收藏 分销(赏)

课程设计考勤管理系统源代码.doc

上传人:精**** 文档编号:9710553 上传时间:2025-04-04 格式:DOC 页数:51 大小:161KB 下载积分:14 金币
下载 相关 举报
课程设计考勤管理系统源代码.doc_第1页
第1页 / 共51页
课程设计考勤管理系统源代码.doc_第2页
第2页 / 共51页


点击查看更多>>
资源描述
package kaoqin; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.sql.*; class AttendFrame extends JFrame//工作制类型 { public AttendFrame() { this.setTitle("工作制类型"); this.setVisible(true); this.setContentPane(new JPanel()); this.setSize(300,200); create(); } private void create() { JButton b1,b2,b3; Box box1,box2,box; b1=new JButton("非弹性工作制"); b2=new JButton("弹性工作制"); b3=new JButton("返回"); box1=Box.createHorizontalBox(); box2=Box.createHorizontalBox(); box=Box.createVerticalBox(); box1.add(b1); box1.add(Box.createHorizontalStrut(20)); box1.add(b2); box2.add(b3); box.add(box1); box.add(Box.createVerticalStrut(30)); box.add(box2); this.add(box); b1.addActionListener(new ActionListener() // { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 UBoundFrame frame=new UBoundFrame(); dispose(); } }); b2.addActionListener(new ActionListener() // { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 BoundFrame frame=new BoundFrame(); dispose(); } }); b3.addActionListener(new ActionListener() // { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 MFrame frame=new MFrame(); dispose(); } }); } } package kaoqin; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.sql.*; class BoundFrame extends JFrame { public BoundFrame() { this.setTitle("弹性工作制"); this.setVisible(true); this.setContentPane(new JPanel()); this.setSize(400,400); create(); } JLabel k1,k2,k3,k4,k5,k6; JTextField f1,f2,f3,f4,f5,f6; Box box1,box2,box3,box4,box5,box; JButton b1; private void create() { k1=new JLabel("工号:"); k2=new JLabel("姓名:"); k3=new JLabel("当月工时:"); k4=new JLabel(":"); k5=new JLabel("当月工作天数"); k6=new JLabel("当月富余:"); b1=new JButton("返回"); f1=new JTextField(5); f2=new JTextField(5); f3=new JTextField(5); f4=new JTextField(5); f5=new JTextField(5); f6=new JTextField(5); box1=Box.createHorizontalBox(); box2=Box.createHorizontalBox(); box3=Box.createHorizontalBox(); box4=Box.createHorizontalBox(); box5=Box.createHorizontalBox(); box=Box.createVerticalBox(); box1.add(k1); box1.add(f1); box1.add(Box.createHorizontalStrut(20)); box1.add(k2); box1.add(f2); box2.add(k3); box2.add(f3); box2.add(k4); box2.add(f4); box3.add(k5); box3.add(f5); box4.add(k6); box4.add(f6); box5.add(b1); box.add(box1); box.add(Box.createVerticalStrut(20)); box.add(box2); box.add(Box.createVerticalStrut(20)); box.add(box3); box.add(Box.createVerticalStrut(20)); box.add(box4); box.add(Box.createVerticalStrut(20)); box.add(box5); this.add(box); b1.addActionListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 AttendFrame frame=new AttendFrame(); dispose(); } }); } } package kaoqin; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; public class ConnectionDB { private String JDriver="sun.jdbc.odbc.JdbcOdbcDriver"; private String sqlURL="jdbc:odbc:bobo"; //private String JDriver="com.microsoft.sqlserver.jdbc.SQLServerDriver"; //private String sqlURL="jdbc:sqlserver://localhost:1433;DatabaseName=MyTest;integratedSecurity=TRUE;"; private Connection connection; private Statement statement; private static Connection conn = null; private String[] tableSQL=new String[4]; public ConnectionDB(){ try { Class.forName(JDriver); connection=DriverManager.getConnection(sqlURL); statement=connection.createStatement(); } catch (ClassNotFoundException e) { e.printStackTrace(); }catch (SQLException e) { e.printStackTrace(); } } public Connection getConnection(){ return connection; } public Statement getStatement(){ return statement; } public void breakDB(){ try { statement.close(); connection.close(); } catch (SQLException e) { e.printStackTrace(); } } public void createTable(){ tableSQL[0]="create table staff_info("+ "Sno char(9) primary key,"+ "Sname char(10) not null,"+ "Sage smallint,"+ "enter_time char(10) not null,"+ "position char(10) not null,"+ "sex char(1),"+ "password char(6));"; tableSQL[1]="create table pz_info("+ "arrive_hour char(2),"+ "arrive_minute char(2),"+ "leave_hour char(2),"+ "leave_minute char(2),"+ "everyday_time char(2));"; tableSQL[2]="create table everymonth_statistics("+ "Sno char(9) not null,"+ "Sname char(10) not null,"+ "remain_time char(4),"+ "late_times smallint,"+ "early_leave smallint,"+ "work_day smallint,"+ "primary key(Sno),"+ "foreign key(Sno)"+ "references staff_info(Sno) on delete cascade);"; tableSQL[3]="create table everyday_statistics("+ "Sno char(9) not null,"+ "Sname char(10) not null,"+ "hour char(2),"+ "minute char(2),"+ "action char(6),"+ "time char(4),"+ "primary key(Sno),"+ "foreign key(Sno)"+ "references staff_info(Sno) on delete cascade);"; try { for(int i=0;i<4;i++) statement.executeUpdate(tableSQL[i]); } catch (SQLException e) { e.printStackTrace(); } } private static ResultSet executeQuery(String sql) { try { if(conn==null) new ConnectionDB(); return conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE).executeQuery(sql); } catch (SQLException e) { e.printStackTrace(); return null; } finally { } } } package kaoqin; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.sql.*; class Equ_Frame extends JFrame //配置信息 { public Equ_Frame() { this.setTitle("配置信息"); this.setSize(400,400); this.setContentPane(new JPanel()); this.setVisible(true); this.create(); } JLabel k1,k2,k3,k4,k5,k6,k7,k8,k9,k10; JLabel f1,f2,f3,f4,f5,f6,f7,f8,f9,f10; Box box1,box2,box3,box4,box5,box6,box7,box; JButton b1,b2; private void create() { k1=new JLabel("上班时间:"); k2=new JLabel(":"); k3=new JLabel("下班时间:"); k4=new JLabel(":"); k5=new JLabel("每月工作总时间:"); k6=new JLabel("每月工作天数:"); k7=new JLabel("每月工作日期:"); k8=new JLabel("~"); k9=new JLabel("每月放假日期:"); k10=new JLabel("~"); b1=new JButton("修改"); b2=new JButton("返回"); f1=new JLabel("08"); f2=new JLabel("30"); f3=new JLabel("17"); f4=new JLabel("30"); f5=new JLabel("200"); f6=new JLabel("22"); f7=new JLabel("星期一"); f8=new JLabel("星期五"); f9=new JLabel("星期六"); f10=new JLabel("星期日"); box1=Box.createHorizontalBox(); box2=Box.createHorizontalBox(); box3=Box.createHorizontalBox(); box4=Box.createHorizontalBox(); box5=Box.createHorizontalBox(); box6=Box.createHorizontalBox(); box7=Box.createHorizontalBox(); box=Box.createVerticalBox(); box1.add(k1); box1.add(f1); box1.add(k2); box1.add(f2); box2.add(k3); box2.add(f3); box2.add(k4); box2.add(f4); box3.add(k5); box3.add(f5); box4.add(k6); box4.add(f6); box5.add(k7); box5.add(f7); box5.add(k8); box5.add(f8); box6.add(k9); box6.add(f9); box6.add(k10); box6.add(f10); box7.add(b1); box7.add(Box.createHorizontalStrut(20)); box7.add(b2); box.add(box1); box.add(Box.createVerticalStrut(20)); box.add(box2); box.add(Box.createVerticalStrut(20)); box.add(box3); box.add(Box.createVerticalStrut(20)); box.add(box4); box.add(Box.createVerticalStrut(20)); box.add(box5); box.add(Box.createVerticalStrut(20)); box.add(box6); box.add(Box.createVerticalStrut(20)); box.add(box7); this.add(box); b1.addActionListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 EquAltFrame frame=new EquAltFrame(); dispose(); } }); b2.addActionListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 MFrame frame=new MFrame(); dispose(); } }); } } package kaoqin; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.sql.*; class EquAltFrame extends JFrame //修改配置信息 { public EquAltFrame() { this.setTitle("修改配置信息"); this.setSize(400,400); this.setContentPane(new JPanel()); this.setVisible(true); this.create(); } JLabel k1,k2,k3,k4,k5,k6,k7,k8,k9,k10; JTextField f1,f2,f3,f4,f5,f6,f7,f8,f9,f10; Box box1,box2,box3,box4,box5,box6,box7,box; JButton b1,b2; private void create() { k1=new JLabel("上班时间:"); k2=new JLabel(":"); k3=new JLabel("下班时间:"); k4=new JLabel(":"); k5=new JLabel("每月工作总时间:"); k6=new JLabel("每月工作天数:"); k7=new JLabel("每月工作日期:"); k8=new JLabel("~"); k9=new JLabel("每月放假日期:"); k10=new JLabel("~"); b1=new JButton("保存"); b2=new JButton("取消"); f1=new JTextField(5); f2=new JTextField(5); f3=new JTextField(5); f4=new JTextField(5); f5=new JTextField(5); f6=new JTextField(5); f7=new JTextField(5); f8=new JTextField(5); f9=new JTextField(5); f10=new JTextField(5); box1=Box.createHorizontalBox(); box2=Box.createHorizontalBox(); box3=Box.createHorizontalBox(); box4=Box.createHorizontalBox(); box5=Box.createHorizontalBox(); box6=Box.createHorizontalBox(); box7=Box.createHorizontalBox(); box=Box.createVerticalBox(); box1.add(k1); box1.add(f1); box1.add(k2); box1.add(f2); box2.add(k3); box2.add(f3); box2.add(k4); box2.add(f4); box3.add(k5); box3.add(f5); box4.add(k6); box4.add(f6); box5.add(k7); box5.add(f7); box5.add(k8); box5.add(f8); box6.add(k9); box6.add(f9); box6.add(k10); box6.add(f10); box7.add(b1); box7.add(Box.createHorizontalStrut(20)); box7.add(b2); box.add(box1); box.add(Box.createVerticalStrut(20)); box.add(box2); box.add(Box.createVerticalStrut(20)); box.add(box3); box.add(Box.createVerticalStrut(20)); box.add(box4); box.add(Box.createVerticalStrut(20)); box.add(box5); box.add(Box.createVerticalStrut(20)); box.add(box6); box.add(Box.createVerticalStrut(20)); box.add(box7); this.add(box); b1.addActionListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 Equ_Frame in=new Equ_Frame(); EquAltFrame on=new EquAltFrame(); in.f1.setText(on.f1.getText()); in.f2.setText(on.f2.getText()); in.f3.setText(on.f3.getText()); in.f4.setText(on.f4.getText()); in.f5.setText(on.f5.getText()); in.f6.setText(on.f6.getText()); in.f7.setText(on.f7.getText()); in.f8.setText(on.f8.getText()); in.f9.setText(on.f9.getText()); in.f10.setText(on.f10.getText()); } }); b2.addActionListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 Equ_Frame frame=new Equ_Frame(); dispose(); } }); } } package kaoqin; import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.sql.*; class login extends JFrame //管理员登陆界面 { public login() { this.setTitle("管理员登陆界面"); this.setSize(300,300); this.setContentPane(new JPanel()); this.setVisible(true); init(); } JTextField jTextField1; JPasswordField jPasswordField1; private void init() { JLabel jLabel1=new JLabel("管理员登陆"); JLabel jLabel2=new JLabel("用户名"); JLabel jLabel3=new JLabel("密码"); jTextField1=new JTextField(10); jPasswordField1=new JPasswordField(10); JButton button1=new JButton("确定"); JButton button2=new JButton("取消"); JButton button3=new JButton("修改密码"); Box box,box1,box2,box3,box4,box5; box1=Box.createHorizontalBox(); box1.add(jLabel1); box1.add(Box.createHorizontalStrut(10)); box2=Box.createHorizontalBox(); box2.add(jLabel2); box2.add(Box.createHorizontalStrut(20)); box2.add(jTextField1); box3=Box.createHorizontalBox(); box3.add(jLabel3); box3.add(Box.createHorizontalStrut(20)); box3.add(jPasswordField1); box4=Box.createHorizontalBox(); box4.add(button1); box4.add(Box.createHorizontalStrut(20)); box4.add(button2); box5=Box.createHorizontalBox(); box5.add(button3); box=Box.createVerticalBox(); box.add(box1);
展开阅读全文

开通  VIP会员、SVIP会员  优惠大
下载10份以上建议开通VIP会员
下载20份以上建议开通SVIP会员


开通VIP      成为共赢上传

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        抽奖活动

©2010-2026 宁波自信网络信息技术有限公司  版权所有

客服电话:0574-28810668  投诉电话:18658249818

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :微信公众号    抖音    微博    LOFTER 

客服