1、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//工作制类型 { p
2、ublic 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 JBut
3、ton("返回"); 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
4、add(box); b1.addActionListener(new ActionListener() // { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 UBoundFrame frame=new UBoundFrame(); dispos
5、e(); } }); b2.addActionListener(new ActionListener() // { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 BoundFrame frame=new BoundFrame();
6、 dispose(); } }); b3.addActionListener(new ActionListener() // { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 MFrame frame=new MFrame();
7、 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; impor
8、t 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
9、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 JTex
10、tField(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();
11、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);
12、 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()
13、 //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 AttendFrame frame=new AttendFrame(); dispose(); } }); } } package kaoqin; import ja
14、va.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="co
15、m.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];
16、 public ConnectionDB(){ try { Class.forName(JDriver); connection=DriverManager.getConnection(sqlURL); statement=connection.createStatement(); } catch (ClassNotFoundException e) { e.printStackTrace(); }catch (SQLException e) { e.printStackTrace(); } }
17、 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 createTabl
18、e(){ 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),"+
19、 "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
20、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
21、 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
22、 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)
23、{ 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.prin
24、tStackTrace(); 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 j
25、ava.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;
26、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("~");
27、 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("星
28、期五"); 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.createHorizontalB
29、ox(); 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); b
30、ox5.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.createVerticalStru
31、t(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.addActio
32、nListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 EquAltFrame frame=new EquAltFrame(); dispose(); } });
33、 b2.addActionListener(new ActionListener() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 MFrame frame=new MFrame(); dispose(); }
34、 }); } } 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 J
35、Frame //修改配置信息 { 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,bo
36、x5,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("每月放假日期:"
37、); 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 JText
38、Field(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.crea
39、teVerticalBox(); 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.
40、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(bo
41、x3); 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 ActionListen
42、er() //确定 { @Override public void actionPerformed(ActionEvent e) { // TODO 自动生成的方法存根 Equ_Frame in=new Equ_Frame(); EquAltFrame on=new EquAltFrame(); in.f1.setText(on.f1.getText(
43、)); 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());
44、 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(Acti
45、onEvent 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;
46、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(ne
47、w JPanel()); this.setVisible(true); init(); } JTextField jTextField1; JPasswordField jPasswordField1; private void init() { JLabel jLabel1=new JLabel("管理员登陆"); JLabel jLabel2=new JLabel("用户名"); JLabel jLabel3=new JLabel("密码");
48、 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(); bo
49、x1.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.createHorizonta
50、lStrut(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);






