• 大小: 1.19MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-30
  • 语言: Java
  • 标签:

资源简介

java源代码 人事管理系统,不错,值得借鉴!!!!!!!!

资源截图

代码片段和文件信息

package com.mwq;

import java.awt.Dimension;
import java.awt.Toolkit;

import javax.swing.SwingUtilities;
import javax.swing.UIManager;

import com.mwq.frame.Indexframe;
import com.mwq.frame.Landframe;
import com.mwq.hibernate.Dao;

public class PersonnelManage {

boolean packframe = false;

public PersonnelManage() {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
try {
UIManager.setLookAndFeel(UIManager
.getSystemLookAndFeelClassName());
} catch (Exception exception) {
exception.printStackTrace();
}
land();
}
});
}

public void land() {
Landframe frame = new Landframe();
if (packframe) {
frame.pack();
} else {
frame.validate();
}

// Center the window
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
Dimension frameSize = frame.getSize();
if (frameSize.height > screenSize.height) {
frameSize.height = screenSize.height;
}
if (frameSize.width > screenSize.width) {
frameSize.width = screenSize.width;
}
frame.setLocation((screenSize.width - frameSize.width) / 2
(screenSize.height - frameSize.height) / 2);
frame.setVisible(true);
}

public static void main(String[] args) {
new PersonnelManage();
}

}

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

     文件       1311  2009-05-15 18:57  人事管理系统\.classpath

     文件        394  2009-05-15 09:15  人事管理系统\.project

     文件        704  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelDialog$1.class

     文件        925  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelDialog$2.class

     文件       1602  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelDialog$3.class

     文件        816  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelDialog$4.class

     文件       3101  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelDialog.class

     文件       2492  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelPanel$1.class

     文件       6527  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptAndPersonnelPanel.class

     文件       1686  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptTreeDialog$1.class

     文件       3029  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\common\DeptTreeDialog.class

     文件       1118  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$1.class

     文件       6232  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$10.class

     文件       1066  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$2.class

     文件       1086  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$3.class

     文件       1070  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$4.class

     文件       1059  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$5.class

     文件       1212  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$6.class

     文件       1391  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$7.class

     文件       1377  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$8.class

     文件        765  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe$9.class

     文件       8744  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Indexframe.class

     文件       1239  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Landframe$1.class

     文件       2878  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Landframe$2.class

     文件        980  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Landframe$3.class

     文件        689  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Landframe$4.class

     文件       5586  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\Landframe.class

     文件       1250  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\personnel\BringUpOperatePanel$1.class

     文件       3008  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\personnel\BringUpOperatePanel$2.class

     文件       2119  2009-07-23 09:11  人事管理系统\bin\com\mwq\frame\personnel\BringUpOperatePanel$3.class

............此处省略250个文件信息

评论

共有 条评论