java 职工信息管理系统源代码.doc
《java 职工信息管理系统源代码.doc》由会员分享,可在线阅读,更多相关《java 职工信息管理系统源代码.doc(31页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、 源代码package lesson2;import java.sql.*;public class employeepublic String num;public String name;public String sex;public String age;public String edu;public String sla;public String add;public String tel;public void init(String x1,String x2,String x3,String x4,String x5,String x6,String x7,String x8
2、)num=x1;name=x2; sex=x3;age=x4;edu=x5;sla=x6;add=x7;tel=x8;public void load(String f)try Class.forName(com.microsoft.sqlserver.jdbc.SQLServerDriver); String url=jdbc:sqlserver:/localhost:1433;DatabaseName=employee; String userName=sa; String password=xhw; Connection conn=DriverManager.getConnection(
3、url,userName,password); if(conn!=null) System.out.println(已成功地与SQL Server 2005数据库建立连接!); Statement stmt=conn.createStatement(); stmt.executeUpdate(f); stmt.close(); catch(Exception e) e.printStackTrace(); package lesson2;import java.awt.*;import java.awt.event.*;import java.sql.*;public class lesson
4、2_1 static Frame f;CardLayout myCard;Panel p1;Panel p2;Panel p3;Panel p4;Panel p5;Panel p6;Panel p7;Panel p8;public static void main(String args) lesson2_1 test=new lesson2_1();test.go1();test.go2();test.go3();test.go4();test.go5();test.go6();test.go7();test.go8();public void go1()f=new Frame(呵 呵 !)
5、;myCard=new CardLayout();f.setLayout(myCard);p1=new Panel();Button b1,b2,b3;Label L1;TextField te1; final TextField te2;p1.setLayout(new GridBagLayout();GridBagConstraints c=new GridBagConstraints();Panel p1_1=new Panel();p1_1.setLayout(new GridBagLayout();GridBagConstraints x=new GridBagConstraints
6、();b1=new Button( 请 输 入 用 户 名 );b1.setBackground(Color.CYAN);x.insets=new Insets(50,50,50,50);x.gridx=0;x.gridy=0;x.gridwidth=1;x.gridheight=1;p1_1.add(b1,x);b2=new Button( 请 输 入 密 码 );b2.setBackground(Color.CYAN);x.gridx=0;x.gridy=5;x.gridwidth=1;x.gridheight=1;p1_1.add(b2,x);te1=new TextField(15);
7、c.insets=new Insets(40,0,40,0);x.gridx=5;x.gridy=0;x.gridwidth=1;x.gridheight=1;p1_1.add(te1,x);te2=new TextField(15);x.gridx=5;x.gridy=5;x.gridwidth=1;x.gridheight=1;p1_1.add(te2,x);L1=new Label( * * * * * * * * * *欢 迎 进 入 职 工 管 理 系 统* * * * * * * * * * * * * *);L1.setBackground(Color.CYAN);c.gridx
8、=0;c.gridy=0;c.gridwidth=0;c.gridheight=1;p1.add(L1,c);b3=new Button( 登 录 );b3.setBackground(Color.CYAN);c.gridx=0;c.gridy=10;c.gridwidth=5;c.gridheight=5;p1.add(b3,c);c.gridx=0;c.gridy=20;c.gridwidth=5;c.gridheight=5;p1.add(p1_1,c);p1.setBackground(Color.green);f.add(p1,First);myCard.show(f,First);
9、 f.setSize(600,600); f.setVisible(true);f.addWindowListener(new WindowAdapter()public void windowClosing(WindowEvent e)System.exit(0););b3.addMouseListener(new MouseAdapter() public void mouseClicked(MouseEvent e) String x=te2.getText(); int y=Integer.parseInt(x); if(y=106) myCard.show(f,Second); );
10、 public void go2()p2=new Panel();Button b1,b2,b3,b4,b5,b6;Label L1;p2.setLayout(new GridBagLayout();GridBagConstraints c=new GridBagConstraints();c.insets=new Insets(50,0,8,0);b1 = new Button(1 职 工 信 息 录 入);b1.setBackground(Color.CYAN);c.gridx=1;c.gridy=50;c.gridwidth=5;c.gridheight=50;p2.add(b1,c);
11、b2=new Button(2 职 工 信 息 浏 览);b2.setBackground(Color.CYAN);c.gridx=1;c.gridy=100;c.gridwidth=5;c.gridheight=50;p2.add(b2,c);b3=new Button(3 职 工 信 息 查 询);b3.setBackground(Color.CYAN);c.gridx=1;c.gridy=150;c.gridwidth=5;c.gridheight=50;p2.add(b3,c);b4=new Button(4 职 工 信 息 排 序);b4.setBackground(Color.CY
12、AN);c.gridx=1;c.gridy=200;c.gridwidth=5;c.gridheight=50;p2.add(b4,c);b5=new Button(5 职 工 信 息 修 改);b5.setBackground(Color.CYAN);c.gridx=1;c.gridy=250;c.gridwidth=5;c.gridheight=50;p2.add(b5,c);b6=new Button(6 职 工 信 息 删 除);b6.setBackground(Color.CYAN);c.gridx=1;c.gridy=300;c.gridwidth=5;c.gridheight=5
13、0;p2.add(b6,c);L1=new Label( * * * * * * * *欢 迎 进 入 职 工 管 理 系 统* * * * * * * * * *);L1.setBackground(Color.CYAN);c.gridx=1;c.gridy=0;c.gridwidth=5;c.gridheight=10;p2.add(L1,c);p2.setBackground(Color.green);f.add(p2,Second);b1.addMouseListener(new MouseAdapter() public void mouseClicked(MouseEvent e)
14、 myCard.show(f,Third); );b2.addMouseListener(new MouseAdapter() public void mouseClicked(MouseEvent e) myCard.show(f,Fourth); );b3.addMouseListener(new MouseAdapter() public void mouseClicked(MouseEvent e) myCard.show(f,Fifth); );b4.addMouseListener(new MouseAdapter() public void mouseClicked(MouseE
15、vent e) myCard.show(f,Sixth); );b5.addMouseListener(new MouseAdapter() public void mouseClicked(MouseEvent e) myCard.show(f,Seventh); );b6.addMouseListener(new MouseAdapter() public void mouseClicked(MouseEvent e) myCard.show(f,Eighth); );public void go3()p3=new Panel();p3.setLayout(new GridBagLayou
16、t();GridBagConstraints c=new GridBagConstraints();Button b1,b2,b3,b4,b5,b6,b7,b8,b9,b10;final TextField te1,te2,te3,te4,te5,te6,te7,te8;Label L1;c.insets=new Insets(60,50,0,0); L1=new Label(* * * * * * * * * * * * * * * 请 输 入 下 面 信 息 * * * * * * * * * * * * * * * *);L1.setBackground(Color.CYAN);c.gr
17、idx=0;c.gridy=0;c.gridwidth=0;c.gridheight=1;p3.add(L1,c);b1=new Button( 工 号 );b1.setBackground(Color.CYAN);c.gridx=0;c.gridy=10;c.gridwidth=1;c.gridheight=1;p3.add(b1,c);b2=new Button( 姓 名 );b2.setBackground(Color.CYAN);c.gridx=35;c.gridy=10;c.gridwidth=1;c.gridheight=1;p3.add(b2,c);b3=new Button(
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- java 职工信息管理系统源代码 职工 信息管理 系统 源代码
限制150内