Java最新Eclipse+Java+Swing实现仓库管理系统,2024Java高级面试题总结

最后

我还通过一些渠道整理了一些大厂真实面试主要有:蚂蚁金服、拼多多、阿里云、百度、唯品会、携程、丰巢科技、乐信、软通动力、OPPO、银盛支付、中国平安等初,中级,高级Java面试题集合,附带超详细答案,希望能帮助到大家。

新鲜出炉的蚂蚁金服面经,熬夜整理出来的答案,已有千人收藏

还有专门针对JVM、SPringBoot、SpringCloud、数据库、Linux、缓存、消息中间件、源码等相关面试题。

新鲜出炉的蚂蚁金服面经,熬夜整理出来的答案,已有千人收藏

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

需要这份系统化的资料的朋友,可以点击这里获取

  • @author shuijianshiqing

*/

public class Goods {

private int id;

private String goodsName;

private String goodsSupplier;

private String sex;

private double price;

private String goodsDesc;

private Integer goodsTypeId;

private String goodsTypeName;

/**

  • 继承父类的构造方法

*/

public Goods() {

super();

}

/**

  • 一个参数的构造方法

  • @param id

*/

public Goods(int id) {

super();

this.id = id;

}

/**

  • 3个参数构造方法

  • @param goodsName

  • @param goodsSupplier

  • @param goodsTypeId

*/

public Goods(String goodsName, String goodsSupplier, Integer goodsTypeId) {

super();

this.goodsName = goodsName;

this.goodsSupplier = goodsSupplier;

this.goodsTypeId = goodsTypeId;

}

/**

  • 6个参数的构造方法

  • @param goodsName

  • @param goodsSupplier

  • @param sex

  • @param price

  • @param goodsDesc

  • @param goodsTypeId

*/

public Goods(String goodsName, String goodsSupplier, String sex, double price, String goodsDesc, int goodsTypeId) {

super();

this.goodsName = goodsName;

this.goodsSupplier = goodsSupplier;

this.sex = sex;

this.price = price;

this.goodsDesc = goodsDesc;

this.goodsTypeId = goodsTypeId;

}

/**

  • 7个参数的构造方法

  • @param goodsName

  • @param goodsSupplier

  • @param sex

  • @param price

  • @param goodsDesc

  • @param goodsTypeId

  • @param goodsTypeName

*/

public Goods(String goodsName, String goodsSupplier, String sex, double price, String goodsDesc,

Integer goodsTypeId, String goodsTypeName) {

super();

this.goodsName = goodsName;

this.goodsSupplier = goodsSupplier;

this.sex = sex;

this.price = price;

this.goodsDesc = goodsDesc;

this.goodsTypeId = goodsTypeId;

this.goodsTypeName = goodsTypeName;

}

/**

  • 7个参数的构造方法

  • @param id

  • @param goodsName

  • @param goodsSupplier

  • @param sex

  • @param price

  • @param goodsDesc

  • @param goodsTypeId

*/

public Goods(int id, String goodsName, String goodsSupplier, String sex, double price, String goodsDesc,

Integer goodsTypeId) {

super();

this.id = id;

this.goodsName = goodsName;

this.goodsSupplier = goodsSupplier;

this.sex = sex;

this.price = price;

this.goodsDesc = goodsDesc;

this.goodsTypeId = goodsTypeId;

}

/**

  • 8个参数的构造方法

  • @param id

  • @param goodsName

  • @param goodsSupplier

  • @param sex

  • @param price

  • @param goodsDesc

  • @param goodsTypeId

  • @param goodsTypeName

*/

public Goods(int id, String goodsName, String goodsSupplier, String sex, double price, String goodsDesc,

Integer goodsTypeId, String goodsTypeName) {

super();

this.id = id;

this.goodsName = goodsName;

this.goodsSupplier = goodsSupplier;

this.sex = sex;

this.price = price;

this.goodsDesc = goodsDesc;

this.goodsTypeId = goodsTypeId;

this.goodsTypeName = goodsTypeName;

}

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getGoodsName() {

return goodsName;

}

public void setGoodsName(String goodsName) {

this.goodsName = goodsName;

}

public String getGoodsSupplier() {

return goodsSupplier;

}

public void setGoodsSupplier(String goodsSupplier) {

this.goodsSupplier = goodsSupplier;

}

public String getSex() {

return sex;

}

public void setSex(String sex) {

this.sex = sex;

}

public double getPrice() {

return price;

}

public void setPrice(double price) {

this.price = price;

}

public String getGoodsDesc() {

return goodsDesc;

}

public void setGoodsDesc(String goodsDesc) {

this.goodsDesc = goodsDesc;

}

public Integer getGoodsTypeId() {

return goodsTypeId;

}

public void setGoodsTypeId(Integer goodsTypeId) {

this.goodsTypeId = goodsTypeId;

}

public String getGoodsTypeName() {

return goodsTypeName;

}

@Override

public String toString() {

return “Goods [id=” + id + “, goodsName=” + goodsName + “, goodsSupplier=” + goodsSupplier + “, sex=” + sex

  • “, price=” + price + “, goodsDesc=” + goodsDesc + “, goodsTypeId=” + goodsTypeId + “, goodsTypeName=”

  • goodsTypeName + “]”;

}

}

GoodsType.java


package com.sjsq.model;

/**

  • GoodsType实体类

  • @author shuijianshiqing

*/

public class GoodsType {

// 货物类型Id

private int id;

// 获取类型名称

private String goodsTypeName;

// 货物类型描述

private String goodsTypeDesc;

/**

  • 继承自父类的构造方法

*/

public GoodsType() {

super();

}

/**

  • 一个参数的构造方法

  • @param goodsTypeName

*/

public GoodsType(String goodsTypeName) {

super();

this.goodsTypeName = goodsTypeName;

}

/**

  • 一个参数的构造方法

  • @param id

*/

public GoodsType(int id) {

super();

this.id = id;

}

/**

  • 2个参数的构造方法

  • @param goodsTypeName

  • @param goodsTypeDesc

*/

public GoodsType(String goodsTypeName, String goodsTypeDesc) {

super();

this.goodsTypeName = goodsTypeName;

this.goodsTypeDesc = goodsTypeDesc;

}

/**

  • 3个参数构造方法

  • @param id

  • @param goodsTypeName

  • @param goodsTypeDesc

*/

public GoodsType(int id, String goodsTypeName, String goodsTypeDesc) {

super();

this.id = id;

this.goodsTypeName = goodsTypeName;

this.goodsTypeDesc = goodsTypeDesc;

}

@Override

public String toString() {

return goodsTypeName;

}

// Set和Get方法

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getGoodsTypeName() {

return goodsTypeName;

}

public void setGoodsTypeName(String goodsTypeName) {

this.goodsTypeName = goodsTypeName;

}

public String getGoodsTypeDesc() {

return goodsTypeDesc;

}

public void setGoodsTypeDesc(String goodsTypeDesc) {

this.goodsTypeDesc = goodsTypeDesc;

}

}

User.java


package com.sjsq.model;

/**

  • 管理员t_user表的User实体类

  • @author shuijianshiqing

*/

public class User {

private int id;// id字段

private String username;// username字段

private String password;// password字段

// 继承父类的构造方法

public User() {

super();

}

/**

  • 重载父类的构造方法带2个参数

  • @param userName

  • @param password

*/

public User(String username, String password) {

super();

this.username = username;

this.password = password;

}

/**

  • Set及Get方法

  • @return

*/

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getUsername() {

return username;

}

public void setUsername(String username) {

this.username = username;

}

public String getPassword() {

return password;

}

public void setPassword(String password) {

this.password = password;

}

}

DbUtil.java


package com.sjsq.util;

import java.sql.Connection;

import java.sql.DriverManager;

import java.sql.ResultSet;

import java.sql.SQLException;

/**

  • 数据库的连接

  • @author shuijianshiqing

*/

public class DbUtil {

// 数据库驱动名

private static String DriverName = “com.mysql.cj.jdbc.Driver”;

// 数据库协议

private static String dbUril = “jdbc:mysql://localhost:3306/db_warehouse?serverTimezone=UTC”;

// 数据库用户名

private static String dbName = “root”;

// 数据库密码

private static String dbPassword = “admin”;

/**

  • 数据库驱动的加载与数据库连接

  • @return

  • @throws Exception

*/

public static Connection getCon() throws Exception {

Class.forName(DriverName);

Connection conn = DriverManager.getConnection(dbUril, dbName, dbPassword);

return conn;

}

/**

  • 关闭数据库连接

  • @param conn

  • @throws SQLException

*/

public static void close(Connection conn) throws SQLException {

if (conn != null) {

conn.close();

}

}

/**

  • 关闭数据库连接

  • @param conn

  • @param rs

  • @throws SQLException

*/

public static void close(Connection conn, ResultSet rs) throws SQLException {

if (rs != null) {

rs.close();

if (conn != null) {

conn.close();

}

}

}

/**

  • 测试main()方法

  • @param args

*/

public static void main(String[] args) {

try {

getCon();

System.out.println(“数据库连接成功!”);

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

System.out.println(“数据库连接失败!”);

}

}

}

StringUtil.java


package com.sjsq.util;

/**

  • 判断用户的输入是否为空方法类

  • @author shuijianshiqing

*/

public class StringUtil {

/**

  • 判断字符串是否为空

  • @param str

  • @return

*/

public static boolean isEmpty(String str) {

if (str == null || “”.equals(str.trim())) {

return true;

} else {

return false;

}

}

/**

  • 判断字符串是否不为空

  • @param str

  • @return

*/

public static boolean isNotEmpty(String str) {

if (str != null && !“”.equals(str.trim())) {

return true;

} else {

return false;

}

}

}

GoodsDao.java


package com.sjsq.dao;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import com.sjsq.model.Goods;

import com.sjsq.util.DbUtil;

import com.sjsq.util.StringUtil;

/**

  • 货物控制操作包

  • @author Peter

  • @author shuijianshiqing

*/

public class GoodsDao {

/**

  • 货物删除事件

  • @param conn

  • @param goods

  • @return

  • @throws Exception

*/

public static int deleteGoods(Connection conn, Goods goods) throws Exception {

String sql = “delete from t_goods where id = ?”;

PreparedStatement pstmt = conn.prepareStatement(sql);

pstmt.setInt(1, goods.getId());

return pstmt.executeUpdate();

}

/**

  • 货物更新事件

  • @param conn

  • @param goods

  • @return

  • @throws Exception

*/

public static int updateGoods(Connection conn, Goods goods) throws Exception {

String sql = “update t_goods set goodsName=?, goodsSupplier=?, sex=?,”

  • " price=?, goodsDesc=? , goodsTypeId = ? where id = ?";

PreparedStatement pstmt = conn.prepareStatement(sql);

pstmt.setString(1, goods.getGoodsName());

pstmt.setString(2, goods.getGoodsSupplier());

pstmt.setString(3, goods.getSex());

pstmt.setDouble(4, goods.getPrice());

pstmt.setString(5, goods.getGoodsDesc());

pstmt.setInt(6, goods.getGoodsTypeId());

pstmt.setInt(7, goods.getId());

return pstmt.executeUpdate();

}

/**

  • 货物查询事件

  • @param conn

  • @param goods

  • @return

  • @throws Exception

*/

public static ResultSet listGoods(Connection conn, Goods goods) throws Exception {

StringBuffer sb = new StringBuffer(“select * from t_goods t_g, t_goodsType t_gt where t_g.goodsTypeId=t_gt.id”);

if (StringUtil.isNotEmpty(goods.getGoodsName())) {

sb.append(" and t_g.goodsName like ‘%" + goods.getGoodsName() + "%’");

}

if (StringUtil.isNotEmpty(goods.getGoodsSupplier())) {

sb.append(" and t_g.goodsSupplier like ‘%" + goods.getGoodsSupplier() + "%’");

}

if (goods.getGoodsTypeId() != null && goods.getGoodsTypeId() != -1) {

sb.append(" and t_g.goodsTypeId like ‘%" + goods.getGoodsTypeId() + "%’");

}

PreparedStatement pstmt = conn.prepareStatement(sb.toString());

return pstmt.executeQuery();

}

/**

  • 添加货物

  • @param conn

  • @param goods

  • @return

  • @throws Exception

*/

public static int addGoods(Connection conn, Goods goods) throws Exception {

String sql = “insert into t_goods values(null, ?, ?, ?, ?, ?, ?,?)”;

PreparedStatement pstmt = conn.prepareStatement(sql);

pstmt.setString(1, goods.getGoodsName());

pstmt.setString(2, goods.getGoodsSupplier());

pstmt.setString(3, goods.getSex());

pstmt.setDouble(4, goods.getPrice());

pstmt.setString(5, goods.getGoodsDesc());

pstmt.setInt(6, goods.getGoodsTypeId());

pstmt.setString(7, goods.getGoodsTypeName());

return pstmt.executeUpdate();

}

public static void main(String[] args) {

Connection conn;

try {

conn = DbUtil.getCon();

GoodsDao goodsDao = new GoodsDao();

Goods goods = new Goods(1,“q”, “q”, “nv”, 2, “q”, 1,“AA”);

System.out.println(goods);

int result = goodsDao.addGoods(conn, goods);

System.out.println(result);

} catch (Exception e) {

e.printStackTrace();

}

}

}

UserDao.java


package com.sjsq.dao;

import java.sql.Connection;

import java.sql.PreparedStatement;

import java.sql.ResultSet;

import com.sjsq.model.User;

/**

  • UserDao实体类是对user管理员的操做控制

  • @author shuijianshiqing

*/

public class UserDao {

/**

  • 管理员登录操作

  • @param conn

  • @param user

  • @return

  • @throws Exception

*/

public User login(Connection conn, User user) throws Exception {

User resultUser = null;

String sql = “select * from t_user where username=? and password=?”;

PreparedStatement pstmt = conn.prepareStatement(sql);

pstmt.setString(1, user.getUsername());

pstmt.setString(2, user.getPassword());

ResultSet rs = pstmt.executeQuery();

if (rs.next()) {

resultUser = new User();

resultUser.setId(rs.getInt(“id”));

resultUser.setUsername(rs.getString(“username”));

resultUser.setPassword(rs.getString(“password”));

}

return resultUser;

}

}

LoginFrm.java


package com.sjsq.view;

import java.awt.EventQueue;

import java.awt.Font;

import java.awt.Toolkit;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.sql.Connection;

import java.sql.SQLException;

import javax.swing.GroupLayout;

import javax.swing.GroupLayout.Alignment;

import javax.swing.ImageIcon;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JPasswordField;

import javax.swing.JTextField;

import javax.swing.UIManager;

import javax.swing.border.EmptyBorder;

import com.sjsq.dao.UserDao;

import com.sjsq.model.User;

import com.sjsq.util.DbUtil;

import com.sjsq.util.StringUtil;

/**

  • 登录页面视图层

  • @author shuijianshiqing

*/

public class LoginFrm extends JFrame {

private static DbUtil dbUtil = new DbUtil();

private static UserDao userDao = new UserDao();

// 主板

private JPanel contentPane;

// 账号

private JTextField userNameTxt;

// 密码

private JPasswordField passwordTxt;

/**

  • 创建窗体

*/

public LoginFrm() {

// 该表系统默认字体

Font font = new Font(“Dialog”, Font.PLAIN, 12);

java.util.Enumeration keys = UIManager.getDefaults().keys();

while (keys.hasMoreElements()) {

Object key = keys.nextElement();

Object value = UIManager.get(key);

if (value instanceof javax.swing.plaf.FontUIResource) {

UIManager.put(key, font);

}

}

setIconImage(Toolkit.getDefaultToolkit().getImage(LoginFrm.class.getResource(“/images/goods_logo.png”)));

setTitle(“仓库管理系统”);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setBounds(100, 100, 546, 369);

contentPane = new JPanel();

contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));

setContentPane(contentPane);

JLabel label = new JLabel(“仓库管理系统管理员登录界面”);

label.setFont(new Font(“宋体”, Font.BOLD, 20));

label.setIcon(new ImageIcon(LoginFrm.class.getResource(“/images/goods_logo.png”)));

JLabel label_1 = new JLabel(“账号”);

label_1.setIcon(new ImageIcon(LoginFrm.class.getResource(“/images/user.png”)));

JLabel label_2 = new JLabel(“密码”);

label_2.setIcon(new ImageIcon(LoginFrm.class.getResource(“/images/password.png”)));

userNameTxt = new JTextField();

userNameTxt.setColumns(10);

passwordTxt = new JPasswordField();

JButton btnNewButton = new JButton(“登录”);

btnNewButton.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent arg0) {

loginActionPerformed(arg0);

}

});

btnNewButton.setIcon(new ImageIcon(LoginFrm.class.getResource(“/images/login.png”)));

JButton button = new JButton(“重置”);

button.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent arg0) {

resetValueActionPerformed(arg0);

}

});

button.setIcon(new ImageIcon(LoginFrm.class.getResource(“/images/reset.png”)));

GroupLayout gl_contentPane = new GroupLayout(contentPane);

gl_contentPane.setHorizontalGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)

.addGroup(gl_contentPane.createSequentialGroup().addContainerGap(99, Short.MAX_VALUE)

.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING).addComponent(label)

.addGroup(gl_contentPane.createSequentialGroup().addGap(38)

.addGroup(gl_contentPane.createParallelGroup(Alignment.TRAILING)

.addComponent(label_2).addComponent(label_1))

.addGap(18)

.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING, false)

.addComponent(passwordTxt)

.addComponent(userNameTxt, GroupLayout.DEFAULT_SIZE, 167,

Short.MAX_VALUE)

.addComponent(button, Alignment.TRAILING))))

.addGap(96))

.addGroup(gl_contentPane.createSequentialGroup().addGap(176).addComponent(btnNewButton)

.addContainerGap(261, Short.MAX_VALUE)));

gl_contentPane.setVerticalGroup(gl_contentPane.createParallelGroup(Alignment.LEADING)

.addGroup(gl_contentPane.createSequentialGroup().addGap(29).addComponent(label).addGap(42)

.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)

.addComponent(userNameTxt, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,

GroupLayout.PREFERRED_SIZE)

.addComponent(label_1))

.addGap(18)

.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE).addComponent(label_2)

.addComponent(passwordTxt, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,

GroupLayout.PREFERRED_SIZE))

.addGap(48)

.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)

.addComponent(btnNewButton, GroupLayout.PREFERRED_SIZE, 28, GroupLayout.PREFERRED_SIZE)

.addComponent(button, GroupLayout.PREFERRED_SIZE, 27, GroupLayout.PREFERRED_SIZE))

.addContainerGap(37, Short.MAX_VALUE)));

contentPane.setLayout(gl_contentPane);

// 居中显示

this.setLocationRelativeTo(null);

}

/**

  • 管理员登录

  • @param arg0

*/

private void loginActionPerformed(ActionEvent arg0) {

String userName = this.userNameTxt.getText();

String password = new String(this.passwordTxt.getPassword());

if (StringUtil.isEmpty(userName)) {

JOptionPane.showMessageDialog(null, “用户名不能为空!”);

return;

}

if (StringUtil.isEmpty(password)) {

JOptionPane.showMessageDialog(null, “密码不能为空!”);

return;

}

User user = new User(userName, password);

Connection conn = null;

try {

conn = dbUtil.getCon();

User currentUser = userDao.login(conn, user);

if (currentUser != null) {

// JOptionPane.showMessageDialog(null, “登录成功!”);

dispose();

new MainFrm().setVisible(true);

} else {

JOptionPane.showMessageDialog(null, “登录失败!”);

}

} catch (Exception e) {

e.printStackTrace();

JOptionPane.showMessageDialog(null, “登录失败!”);

} finally {

try {

dbUtil.close(conn);

} catch (SQLException e) {

e.printStackTrace();

}

}

}

/**

  • 重置事件

  • @param arg0

*/

private void resetValueActionPerformed(ActionEvent arg0) {

// TODO Auto-generated method stub

this.resetValue();

}

/**

  • 重置表单事件

*/

private void resetValue() {

this.userNameTxt.setText(“”);

this.passwordTxt.setText(“”);

}

/**

  • 运行程序

*/

public static void main(String[] args) {

EventQueue.invokeLater(new Runnable() {

public void run() {

try {

LoginFrm frame = new LoginFrm();

frame.setVisible(true);

} catch (Exception e) {

e.printStackTrace();

}

}

});

}

}

MainFrm.java


package com.sjsq.view;

import java.awt.BorderLayout;

import java.awt.EventQueue;

import javax.swing.JFrame;

import javax.swing.JPanel;

import javax.swing.border.EmptyBorder;

import java.awt.Toolkit;

import javax.swing.JDesktopPane;

import javax.swing.JMenuBar;

import javax.swing.JMenu;

import javax.swing.JMenuItem;

import javax.swing.JOptionPane;

import javax.swing.ImageIcon;

import java.awt.event.ActionListener;

import java.awt.event.ActionEvent;

/**

  • 主页面视图层

  • @author shuijianshiqing

*/

public class MainFrm extends JFrame {

private JPanel contentPane;

private JDesktopPane table;

/**

  • 创建窗体

*/

public MainFrm() {

setTitle(“仓库系统主界面”);

setIconImage(Toolkit.getDefaultToolkit().getImage(MainFrm.class.getResource(“/images/goods_logo.png”)));

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setBounds(100, 200, 900, 800);

JMenuBar menuBar = new JMenuBar();

setJMenuBar(menuBar);

JMenu menu = new JMenu(“仓库系统管理”);

menu.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/manager.png”)));

menuBar.add(menu);

JMenu menu_2 = new JMenu(“仓库系统管理”);

menu_2.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/goodmanager.png”)));

menu.add(menu_2);

JMenuItem menuItem_2 = new JMenuItem(“货物类型添加”);

menuItem_2.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

GoodsTypeAddInterFrm goodsTypeAddInterFrm = new GoodsTypeAddInterFrm();

goodsTypeAddInterFrm.setVisible(true);

table.add(goodsTypeAddInterFrm);

}

});

menuItem_2.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/add.png”)));

menu_2.add(menuItem_2);

JMenuItem menuItem_3 = new JMenuItem(“货物类型修改”);

menuItem_3.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

GoodsTypeManagerInterFrm goodsTypeManagerInterFrm = new GoodsTypeManagerInterFrm();

goodsTypeManagerInterFrm.setVisible(true);

table.add(goodsTypeManagerInterFrm);

}

});

menuItem_3.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/modify.png”)));

menu_2.add(menuItem_3);

JMenu menu_3 = new JMenu(“货物物品管理”);

menu_3.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/goods.png”)));

menu.add(menu_3);

JMenuItem menuItem_4 = new JMenuItem(“货物物品添加”);

menuItem_4.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent arg0) {

GoodsAddInterFrm goodsAddInterFrm = new GoodsAddInterFrm();

goodsAddInterFrm.setVisible(true);

table.add(goodsAddInterFrm);

}

});

menuItem_4.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/add.png”)));

menu_3.add(menuItem_4);

JMenuItem menuItem_5 = new JMenuItem(“货物物品修改”);

menuItem_5.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent arg0) {

GoodsManagerInterFrm goodsManagerInterFrm = new GoodsManagerInterFrm();

goodsManagerInterFrm.setVisible(true);

table.add(goodsManagerInterFrm);

}

});

menuItem_5.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/modify.png”)));

menu_3.add(menuItem_5);

JMenuItem menuItem_1 = new JMenuItem(“安全退出”);

menuItem_1.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

exitSystemActionPerformed(e);

}

});

menuItem_1.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/exit.png”)));

menu.add(menuItem_1);

JMenu menu_1 = new JMenu(“联系我们”);

menu_1.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/contact.png”)));

menuBar.add(menu_1);

JMenuItem menuItem = new JMenuItem(“联系方式”);

menuItem.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent arg0) {

MyContactInterFrm myContactInterFrm = new MyContactInterFrm();

myContactInterFrm.setVisible(true);

table.add(myContactInterFrm);

}

});

menuItem.setIcon(new ImageIcon(MainFrm.class.getResource(“/images/phnoe.png”)));

menu_1.add(menuItem);

contentPane = new JPanel();

contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));

contentPane.setLayout(new BorderLayout(0, 0));

setContentPane(contentPane);

table = new JDesktopPane();

contentPane.add(table, BorderLayout.CENTER);

// 居中显示

this.setLocationRelativeTo(null);

// 最大化处理

// this.setExtendedState(JFrame.MAXIMIZED_BOTH);

}

/**

  • 安全退出系统

  • @param e

*/

private void exitSystemActionPerformed(ActionEvent e) {

int n = JOptionPane.showConfirmDialog(null, “你确定要离开系统么”);

if (n == 0) {

dispose();

return;

}

}

/**

  • 运行程序

*/

public static void main(String[] args) {

EventQueue.invokeLater(new Runnable() {

public void run() {

try {

MainFrm frame = new MainFrm();

frame.setVisible(true);

} catch (Exception e) {

e.printStackTrace();

}

}

});

}

}

GoodsAddInterFrm.java


package com.sjsq.view;

import java.awt.EventQueue;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.sql.Connection;

import java.sql.ResultSet;

import java.sql.SQLException;

import javax.swing.ButtonGroup;

import javax.swing.GroupLayout;

import javax.swing.GroupLayout.Alignment;

import javax.swing.JButton;

import javax.swing.JComboBox;

import javax.swing.JInternalFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JRadioButton;

import javax.swing.JTextArea;

import javax.swing.JTextField;

import javax.swing.LayoutStyle.ComponentPlacement;

import com.sjsq.dao.GoodsDao;

import com.sjsq.dao.GoodsTypeDao;

import com.sjsq.model.Goods;

import com.sjsq.model.GoodsType;

import com.sjsq.util.DbUtil;

import com.sjsq.util.StringUtil;

import javax.swing.ImageIcon;

/**

  • 货物添加视图层

  • @author shuijianshiqing

*/

public class GoodsAddInterFrm extends JInternalFrame {

private JTextField goodsNameTxt;

private JTextField goodsSupplierTxt;

private JTextField priceTxt;

private JTextArea goodsDescTxt;

private JComboBox goodsTypeNameJcb;

private JRadioButton manJrb;

private JRadioButton femaleJrb;

private final ButtonGroup buttonGroup = new ButtonGroup();

private static DbUtil dbUtil = new DbUtil();

private static GoodsDao goodsDao = new GoodsDao();

/**

  • 创建窗体

*/

public GoodsAddInterFrm() {

setClosable(true);

setIconifiable(true);

setTitle(“货物添加”);

setBounds(100, 100, 596, 399);

JLabel lblNewLabel = new JLabel(“货物名称:”);

goodsNameTxt = new JTextField();

goodsNameTxt.setColumns(10);

JLabel lblNewLabel_1 = new JLabel(“货物供应商:”);

goodsSupplierTxt = new JTextField();

goodsSupplierTxt.setColumns(10);

JLabel label = new JLabel(“供应商性别:”);

manJrb = new JRadioButton(“男”);

buttonGroup.add(manJrb);

manJrb.setSelected(true);

femaleJrb = new JRadioButton(“女”);

buttonGroup.add(femaleJrb);

JLabel lblNewLabel_2 = new JLabel(“货物价格:”);

priceTxt = new JTextField();

priceTxt.setColumns(10);

JLabel label_1 = new JLabel(“货物类别:”);

goodsTypeNameJcb = new JComboBox();

JLabel label_2 = new JLabel(“货物描述:”);

goodsDescTxt = new JTextArea();

JButton button = new JButton(“添加”);

button.setIcon(new ImageIcon(GoodsAddInterFrm.class.getResource(“/images/add.png”)));

button.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent arg0) {

addGoodsActionPerformed(arg0);

}

});

JButton button_1 = new JButton(“重置”);

button_1.setIcon(new ImageIcon(GoodsAddInterFrm.class.getResource(“/images/reset.png”)));

button_1.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

resetValueActionPerformed(e);

}

});

GroupLayout groupLayout = new GroupLayout(getContentPane());

groupLayout.setHorizontalGroup(groupLayout.createParallelGroup(Alignment.LEADING).addGroup(groupLayout

.createSequentialGroup()

.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)

.addGroup(groupLayout.createSequentialGroup().addGap(45)

.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)

.addGroup(groupLayout

.createSequentialGroup().addComponent(label_2).addGap(

.addComponent(goodsDescTxt, GroupLayout.PREFERRED_SIZE, 346,

GroupLayout.PREFERRED_SIZE))

.addGroup(groupLayout.createSequentialGroup().addGroup(groupLayout

.createParallelGroup(Alignment.LEADING, false)

.addGroup(groupLayout.createSequentialGroup().addComponent(label_1)

.addPreferredGap(ComponentPlacement.RELATED).addComponent(

goodsTypeNameJcb, 0, GroupLayout.DEFAULT_SIZE,

Short.MAX_VALUE))

.addGroup(groupLayout.createSequentialGroup().addComponent(lblNewLabel)

.addPreferredGap(ComponentPlacement.RELATED)

.addComponent(goodsNameTxt, GroupLayout.PREFERRED_SIZE, 99,

GroupLayout.PREFERRED_SIZE))

.addGroup(groupLayout.createSequentialGroup().addComponent(label)

.addPreferredGap(ComponentPlacement.UNRELATED)

.addComponent(manJrb)

.addPreferredGap(ComponentPlacement.UNRELATED)

.addComponent(femaleJrb)))

.addGap(65)

.addGroup(groupLayout.createParallelGroup(Alignment.LEADING, false)

.addGroup(groupLayout

.createSequentialGroup().addComponent(lblNewLabel_1)

.addPreferredGap(ComponentPlacement.RELATED)

.addComponent(goodsSupplierTxt,

GroupLayout.PREFERRED_SIZE, 102,

GroupLayout.PREFERRED_SIZE))

.addGroup(groupLayout.createSequentialGroup()

.addComponent(lblNewLabel_2).addGap(18)

.addComponent(priceTxt))))))

.addGroup(groupLayout.createSequentialGroup().addGap(149).addComponent(button).addGap(119)

.addComponent(button_1)))

.addContainerGap(126, Short.MAX_VALUE)));

groupLayout.setVerticalGroup(groupLayout.createParallelGroup(Alignment.LEADING)

.addGroup(groupLayout.createSequentialGroup().addGap(38)

.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE).addComponent(lblNewLabel)

.addComponent(goodsNameTxt, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,

GroupLayout.PREFERRED_SIZE)

.addComponent(lblNewLabel_1).addComponent(goodsSupplierTxt, GroupLayout.PREFERRED_SIZE,

GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE))

.addGap(28)

.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE).addComponent(label)

.addComponent(manJrb).addComponent(femaleJrb).addComponent(lblNewLabel_2)

.addComponent(priceTxt, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,

GroupLayout.PREFERRED_SIZE))

.addGap(28)

.addGroup(groupLayout.createParallelGroup(Alignment.BASELINE).addComponent(label_1)

.addComponent(goodsTypeNameJcb, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE,

GroupLayout.PREFERRED_SIZE))

.addGroup(groupLayout.createParallelGroup(Alignment.LEADING)

.addGroup(groupLayout.createSequentialGroup().addGap(35).addComponent(label_2))

.addGroup(groupLayout.createSequentialGroup().addGap(36).addComponent(goodsDescTxt,

GroupLayout.PREFERRED_SIZE, 83, GroupLayout.PREFERRED_SIZE)))

.addPreferredGap(ComponentPlacement.RELATED, 25, Short.MAX_VALUE).addGroup(groupLayout

.createParallelGroup(Alignment.BASELINE).addComponent(button_1).addComponent(button))

.addGap(22)));

getContentPane().setLayout(groupLayout);

// 填充下拉列表

this.fillGoodsType();

}

/**

  • 货物添加事件

  • @param arg0

*/

private void addGoodsActionPerformed(ActionEvent arg0) {

String goodsName = this.goodsNameTxt.getText();

String goodsSupplier = this.goodsSupplierTxt.getText();

String price = this.priceTxt.getText();

String goodsDesc = this.goodsDescTxt.getText();

if (StringUtil.isEmpty(goodsName)) {

JOptionPane.showMessageDialog(null, “货物名称不能为空!”);

return;

}

if (StringUtil.isEmpty(goodsSupplier)) {

JOptionPane.showMessageDialog(null, “货物供货商不能为空!”);

return;

}

if (StringUtil.isEmpty(goodsDesc)) {

JOptionPane.showMessageDialog(null, “货物描述不能为空!”);

return;

}

if (StringUtil.isEmpty(price)) {

JOptionPane.showMessageDialog(null, “货物价格不能为空!”);

return;

}

String sex = “”;

if (manJrb.isSelected()) {

sex = “男”;

} else if (femaleJrb.isSelected()) {

sex = “女”;

}

GoodsType goodsTypeName = (GoodsType) this.goodsTypeNameJcb.getSelectedItem();

int goodsTypeId = goodsTypeName.getId();

String goodsTypeNames = goodsTypeName.getGoodsTypeName();

Goods goods = new Goods(goodsName, goodsSupplier, sex, Double.parseDouble(price), goodsDesc, goodsTypeId,goodsTypeNames);

Connection conn = null;

try {

conn = DbUtil.getCon();

int result = goodsDao.addGoods(conn, goods);

if (result == 1) {

JOptionPane.showMessageDialog(null, “货物添加成功!”);

this.resetValue();

} else {

JOptionPane.showMessageDialog(null, “货物添加失败!”);

}

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

dbUtil.close(conn);

} catch (SQLException e) {

e.printStackTrace();

}

}

}

/**

  • 货物表单重置事件

  • @param e

*/

private void resetValueActionPerformed(ActionEvent e) {

this.resetValue();

}

/**

  • 表单重置事件

*/

private void resetValue() {

this.goodsNameTxt.setText(“”);

this.goodsSupplierTxt.setText(“”);

this.priceTxt.setText(“”);

this.goodsDescTxt.setText(“”);

this.manJrb.setSelected(true);

if (goodsTypeNameJcb.getItemCount() > 0) {

goodsTypeNameJcb.setSelectedIndex(0);

}

}

/**

  • 填充下拉列表货物类型

*/

private void fillGoodsType() {

Connection conn = null;

GoodsType goodsType = null;

ResultSet rs = null;

try {

conn = DbUtil.getCon();

rs = GoodsTypeDao.listGoodsType(conn, new GoodsType());

while (rs.next()) {

goodsType = new GoodsType();

goodsType.setId(rs.getInt(“id”));

goodsType.setGoodsTypeName(rs.getString(“goodsTypeName”));

this.goodsTypeNameJcb.addItem(goodsType);

}

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

DbUtil.close(conn, rs);

} catch (SQLException e) {

e.printStackTrace();

}

}

}

/**

  • 运行程序

*/

public static void main(String[] args) {

EventQueue.invokeLater(new Runnable() {

public void run() {

try {

GoodsAddInterFrm frame = new GoodsAddInterFrm();

frame.setVisible(true);

} catch (Exception e) {

e.printStackTrace();

}

}

});

}

}

GoodsManagerInterFrm.java


package com.sjsq.view;

import java.awt.EventQueue;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.MouseAdapter;

import java.awt.event.MouseEvent;

import java.sql.Connection;

写在最后

为了这次面试,也收集了很多的面试题!

以下是部分面试题截图

Java程序员秋招三面蚂蚁金服,我总结了所有面试题,也不过如此

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

需要这份系统化的资料的朋友,可以点击这里获取

goodsTypeName = (GoodsType) this.goodsTypeNameJcb.getSelectedItem();

int goodsTypeId = goodsTypeName.getId();

String goodsTypeNames = goodsTypeName.getGoodsTypeName();

Goods goods = new Goods(goodsName, goodsSupplier, sex, Double.parseDouble(price), goodsDesc, goodsTypeId,goodsTypeNames);

Connection conn = null;

try {

conn = DbUtil.getCon();

int result = goodsDao.addGoods(conn, goods);

if (result == 1) {

JOptionPane.showMessageDialog(null, “货物添加成功!”);

this.resetValue();

} else {

JOptionPane.showMessageDialog(null, “货物添加失败!”);

}

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

dbUtil.close(conn);

} catch (SQLException e) {

e.printStackTrace();

}

}

}

/**

  • 货物表单重置事件

  • @param e

*/

private void resetValueActionPerformed(ActionEvent e) {

this.resetValue();

}

/**

  • 表单重置事件

*/

private void resetValue() {

this.goodsNameTxt.setText(“”);

this.goodsSupplierTxt.setText(“”);

this.priceTxt.setText(“”);

this.goodsDescTxt.setText(“”);

this.manJrb.setSelected(true);

if (goodsTypeNameJcb.getItemCount() > 0) {

goodsTypeNameJcb.setSelectedIndex(0);

}

}

/**

  • 填充下拉列表货物类型

*/

private void fillGoodsType() {

Connection conn = null;

GoodsType goodsType = null;

ResultSet rs = null;

try {

conn = DbUtil.getCon();

rs = GoodsTypeDao.listGoodsType(conn, new GoodsType());

while (rs.next()) {

goodsType = new GoodsType();

goodsType.setId(rs.getInt(“id”));

goodsType.setGoodsTypeName(rs.getString(“goodsTypeName”));

this.goodsTypeNameJcb.addItem(goodsType);

}

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

DbUtil.close(conn, rs);

} catch (SQLException e) {

e.printStackTrace();

}

}

}

/**

  • 运行程序

*/

public static void main(String[] args) {

EventQueue.invokeLater(new Runnable() {

public void run() {

try {

GoodsAddInterFrm frame = new GoodsAddInterFrm();

frame.setVisible(true);

} catch (Exception e) {

e.printStackTrace();

}

}

});

}

}

GoodsManagerInterFrm.java


package com.sjsq.view;

import java.awt.EventQueue;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.MouseAdapter;

import java.awt.event.MouseEvent;

import java.sql.Connection;

写在最后

为了这次面试,也收集了很多的面试题!

以下是部分面试题截图

[外链图片转存中…(img-xUXwOaqb-1715367944113)]

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

需要这份系统化的资料的朋友,可以点击这里获取

  • 9
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
员工工资管理系统是一个常见的软件应用程序,可以帮助公司管理员工的基本信息、薪资、考勤、福利等方面的内容。本文将介绍如何使用 Eclipse+Java+Swing+Mysql 实现员工工资管理系统。 步骤1:创建数据库 首先,我们需要在 Mysql 中创建一个名为 salary 的数据库,并在其中创建三个表:employee、salary_record 和 department。 employee 表用于存储员工的基本信息,包括员工编号、姓名、性别、部门编号等字段。salary_record 表用于存储员工的薪资记录,包括员工编号、发放日期、基本工资、奖金、扣款等字段。department 表用于存储部门的基本信息,包括部门编号、部门名称等字段。 步骤2:创建 Java 项目 在 Eclipse 中创建一个新的 Java 项目,命名为 SalaryManagementSystem。在项目中创建三个包:entity、dao 和 view。 entity 包用于存储实体类,包括 Employee、SalaryRecord 和 Department 等类。dao 包用于存储数据访问对象,包括 EmployeeDao、SalaryRecordDao 和 DepartmentDao 等类。view 包用于存储界面类,包括 LoginFrame、MainFrame 和 AddEmployeeFrame 等类。 步骤3:编写实体类 在 entity 包中创建 Employee、SalaryRecord 和 Department 等类,并为每个类添加相应的属性和方法。例如,Employee 类包括员工编号、姓名、性别、所属部门等属性,以及获取和设置这些属性的方法。 步骤4:编写数据访问对象 在 dao 包中创建 EmployeeDao、SalaryRecordDao 和 DepartmentDao 等类,并实现相应的数据访问方法。例如,EmployeeDao 类包括添加员工、删除员工、更新员工信息、查询员工信息等方法。 步骤5:编写界面类 在 view 包中创建 LoginFrame、MainFrame 和 AddEmployeeFrame 等类,并实现相应的界面和事件处理方法。例如,LoginFrame 类用于显示登录界面,并处理用户登录事件;AddEmployeeFrame 类用于显示添加员工界面,并处理添加员工事件。 步骤6:连接数据库 使用 JDBC 连接 Mysql 数据库,为每个数据访问对象创建相应的连接和预编译语句,实现数据库的增删改查操作。 步骤7:测试程序 在 Eclipse 中运行程序,测试各个功能是否正常。例如,登录功能、员工信息查询功能、添加员工功能等。 总结 本文介绍了如何使用 Eclipse+Java+Swing+Mysql 实现员工工资管理系统。通过实现实体类、数据访问对象和界面类等模块,实现对员工信息、薪资、部门信息等数据的管理。这个项目可以作为 Java 开发入门的练手项目,帮助初学者熟悉 Java 开发、Swing 界面设计和 Mysql 数据库操作等技术。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值