• 大小: 15KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-09
  • 语言: Java
  • 标签: 工资  java  sql  

资源简介

员工工资管理系统,包括登陆界面及系统相关基本功能

资源截图

代码片段和文件信息

//添加职工面板类AddEmployee

//导入系统的类包
import java.awt.*;
import java.sql.*;
import javax.swing.*;
import java.awt.event.*;
//创建“添加职工“面板类
public class AddEmployee extends JPanel implements ActionListener
{
//声明连接数据库对象
Connection con;
//声明SQL语句对象 
Statement st;
//创建组件对象:标签、文本行、单选
JLabel jLabel1=new JLabel(“职工工号“);
JLabel jLabel2=new JLabel(“职工姓名“);
JLabel jLabel3=new JLabel(“职工性别“);
JLabel jLabel4=new JLabel(“职工年龄“);
JLabel jLabel5=new JLabel(“家庭住址“);
JLabel jLabel6=new JLabel(“联系电话“);
JTextField jTextField1=new JTextField();
JTextField jTextField2=new JTextField();
JTextField jTextField3=new JTextField();
JTextField jTextField4=new JTextField();
JTextField jTextField5=new JTextField();
JRadioButton jRadioButton1=new JRadioButton(“男“);
JRadioButton jRadioButton2=new JRadioButton(“女“);
ButtonGroup buttonGroup1=new ButtonGroup();
JButton jButton1=new JButton(“添加职工“);
//构造方法
public AddEmployee()
{
try{
//调用初始化方法
jbInit();
}
catch(Exception exception){
exception.printStackTrace();
}
}
//界面初始化方法
private void jbInit() throws Exception
{
//连接数据库
con=DBConnect.getConn();
st=con.createStatement();
//框架的布局
this.setLayout(null);
//设置各组件的大小
jLabel1.setBounds(new Rectangle(21176424));
jLabel2.setBounds(new Rectangle(21515322));
jLabel3.setBounds(new Rectangle(21866127));
jLabel4.setBounds(new Rectangle(211225925));
jLabel5.setBounds(new Rectangle(211685424));
jLabel6.setBounds(new Rectangle(212055424));
jTextField1.setBounds(new Rectangle(1021020030));
jTextField2.setBounds(new Rectangle(1024920030));
jTextField3.setBounds(new Rectangle(1021178033));
jTextField4.setBounds(new Rectangle(10216320029));
jTextField5.setBounds(new Rectangle(10220020029));
jRadioButton1.setBounds(new Rectangle(102836530));
jRadioButton2.setBounds(new Rectangle(190858530));
jButton1.setBounds(new Rectangle(13024015032));
//设置单选按钮被选中
jRadioButton1.setSelected(true);
//添加按钮动作事件
jButton1.addActionListener(this);
//添加组件到面板
this.add(jLabel1);
this.add(jTextField1);
this.add(jLabel2);
this.add(jTextField2);
this.add(jLabel3);
buttonGroup1.add(jRadioButton1);
buttonGroup1.add(jRadioButton2);
this.add(jRadioButton1);
this.add(jRadioButton2);
this.add(jLabel4);
this.add(jTextField3);
this.add(jLabel5);
this.add(jTextField4);
this.add(jLabel6);
this.add(jTextField5);
this.add(jButton1);
}
//点击按钮事件
public void actionPerformed(ActionEvent e)
{
//获取用户输入的信息
String EmployeeID=jTextField1.getText();
String EmployeeName=jTextField2.getText();
String EmployeeSex=““;
if(jRadioButton1.isSelected())
EmployeeSex+=“男“;
if(jRadioButton2.isSelected())
EmployeeSex+=“女“;
String EmployeeAge=jTextField3.getText();
String EmployeeAddress=jTextField4.getText();
String EmployeePhone=jTextField5.getText();
try{
//设置日期格式
st

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3835  2015-06-08 17:13  员工工资管理系统源代码\AddEmployee.java

     文件       2039  2015-06-08 17:15  员工工资管理系统源代码\AddSalary.java

     文件        373  2015-06-08 17:15  员工工资管理系统源代码\DBclose.java

     文件        798  2015-06-08 17:16  员工工资管理系统源代码\DBConnect.java

     文件       1895  2015-06-08 17:19  员工工资管理系统源代码\DeleteEmployee.java

     文件       1283  2015-06-08 17:20  员工工资管理系统源代码\EmployeeHelp.java

     文件       2225  2015-06-08 17:21  员工工资管理系统源代码\InquireOnGH.java

     文件       2235  2015-06-08 17:22  员工工资管理系统源代码\InquireOnName.java

     文件       2746  2015-06-08 17:23  员工工资管理系统源代码\jiemian.java

     文件       6014  2015-06-08 17:24  员工工资管理系统源代码\Mainframe.java

     文件       5220  2015-06-08 17:24  员工工资管理系统源代码\ModifyEmployee.java

     文件       3326  2015-06-08 17:25  员工工资管理系统源代码\ModifySalary.java

     文件       2063  2015-06-08 17:26  员工工资管理系统源代码\SalaryInquire.java

     文件        710  2015-06-08 17:27  员工工资管理系统源代码\sgkgl.java

     目录          0  2015-06-15 14:23  员工工资管理系统源代码

----------- ---------  ---------- -----  ----

                34762                    15


评论

共有 条评论