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

资源简介

众望书城网上系统 Eclipse 2014 JDK 1.7 mssqlserver数据库 众望书城网上系统 Eclipse 2014 JDK 1.7 mssqlserver数据库

资源截图

代码片段和文件信息

package com.lzw;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
import model.TbUserlist;
import com.lzw.dao.Dao;
public class Login extends Jframe {
private JLabel userLabel;
private JLabel passLabel;
private JButton exit;
private JButton login;
private Main window;
private static TbUserlist user;
public Login() {
setIconImage(new ImageIcon(“res/main1.gif“).getImage());
settitle(“众望书城“);
final JPanel panel = new LoginPanel();
panel.setLayout(null);
getContentPane().add(panel);
setBounds(300 200 panel.getWidth() panel.getHeight());
userLabel = new JLabel();
userLabel.setText(“用户名:“);
userLabel.setBounds(140 160 200 18);
panel.add(userLabel);
final JTextField userName = new JTextField();
userName.setBounds(190 160 200 18);
panel.add(userName);
passLabel = new JLabel();
passLabel.setText(“密  码:“);
passLabel.setBounds(140 200 200 18);
panel.add(passLabel);
final JPasswordField userPassword = new JPasswordField();
userPassword.addKeyListener(new KeyAdapter() {
public void keyPressed(final KeyEvent e) {
if (e.getKeyCode() == 10)
login.doClick();
}
});
userPassword.setBounds(190 200 200 18);
panel.add(userPassword);
login = new JButton();
login.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
user = Dao.getUser(userName.getText() userPassword.getText());
if (user.getUsername() == null || user.getName() == null) {
userName.setText(null);
userPassword.setText(null);
return;
}
setVisible(false);
window = new Main();
window.frame.setVisible(true);
}
});
login.setText(“登录“);
login.setBounds(200 250 60 18);
panel.add(login);
exit = new JButton();
exit.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent e) {
System.exit(0);
}
});
exit.setText(“退出“);
exit.setBounds(280 250 60 18);
panel.add(exit);
setVisible(true);
setResizable(false);
setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
}
public static TbUserlist getUser() {
return user;
}
public static void setUser(TbUserlist user) {
Login.user = user;
}
}

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

     文件    2031616  2018-01-08 15:43  database\db_JXC_Data.MDF

     文件    1048576  2018-01-08 15:43  database\db_JXC_Log.LDF

     文件        426  2018-01-08 15:43  one\.classpath

     文件        569  2018-01-08 15:43  one\.fatjar

     文件        439  2018-01-08 15:43  one\.myhibernatedata

     文件        832  2018-01-08 15:43  one\.project

     文件         97  2018-01-08 15:43  one\.settings\org.eclipse.core.resources.prefs

     文件        629  2018-01-08 15:43  one\.settings\org.eclipse.jdt.core.prefs

     文件       1832  2018-01-08 15:43  one\bin\ActionIcon\价格调整.png

     文件       1849  2018-01-08 15:43  one\bin\ActionIcon\供应商信息查询.png

     文件        765  2018-01-08 15:43  one\bin\ActionIcon\供应商信息管理.png

     文件       1165  2018-01-08 15:43  one\bin\ActionIcon\入库查询.png

     文件        746  2018-01-08 15:43  one\bin\ActionIcon\入库退货查询.png

     文件       1230  2018-01-08 15:43  one\bin\ActionIcon\商品信息查询.png

     文件        903  2018-01-08 15:43  one\bin\ActionIcon\商品信息管理.png

     文件       1907  2018-01-08 15:43  one\bin\ActionIcon\客户信息查询.png

     文件       1562  2018-01-08 15:43  one\bin\ActionIcon\客户信息管理.png

     文件        930  2018-01-08 15:43  one\bin\ActionIcon\库存盘点.png

     文件       1455  2018-01-08 15:43  one\bin\ActionIcon\操作员管理.png

     文件       1743  2018-01-08 15:43  one\bin\ActionIcon\更改密码.png

     文件       1235  2018-01-08 15:43  one\bin\ActionIcon\权限管理.png

     文件       1145  2018-01-08 15:43  one\bin\ActionIcon\进货单.png

     文件       1494  2018-01-08 15:43  one\bin\ActionIcon\进货退货.png

     文件       1665  2018-01-08 15:43  one\bin\ActionIcon\退出系统.png

     文件       1457  2018-01-08 15:43  one\bin\ActionIcon\销售信息查询.png

     文件        765  2018-01-08 15:43  one\bin\ActionIcon\销售单.png

     文件       1006  2018-01-08 15:43  one\bin\ActionIcon\销售排行.png

     文件       1163  2018-01-08 15:43  one\bin\ActionIcon\销售退货.png

     文件       1406  2018-01-08 15:43  one\bin\ActionIcon\销售退货查询.png

     文件      20554  2018-01-08 15:43  one\bin\com\lzw\dao\Dao.class

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

评论

共有 条评论