资源简介
该系统基于mysql+eclipse+jdk1.6(内部有注释,系统完整)
实现3张表的增删查改操作
简单GUI操作界面
适合课程设计
代码片段和文件信息
package com.system.main;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import com.system.main.Login.ButtonListener;
import com.system.sql.Product;
import com.system.sql.User;
public class AddPro extends Jframe{
private JButton addbtn;
private JButton changebtn;
//用户与密码标签
private JLabel lab1lab2lab3lab4;
//4个输入框
JTextField pname;
JTextField pnum;
JTextField pprice;
JTextField pclass;
public AddPro(){
this.init();
}
public void init() {
Container con=super.getContentPane();//顶级容器
con.setLayout(null);
lab1=new JLabel(“商品名:“);
lab1.setBounds(5510060);
pname=new JTextField(20);
pname.setBounds(502020030);
lab2=new JLabel(“数 量:“);
lab2.setBounds(53510060);
pnum=new JTextField(20);
pnum.setBounds(505020030);
lab3=new JLabel(“价 格:“);
lab3.setBounds(56510060);
pprice=new JTextField(20);
pprice.setBounds(508020030);
lab4=new JLabel(“种 类:“);
lab4.setBounds(59510060);
pclass=new JTextField(20);
pclass.setBounds(5011020030);
addbtn=new JButton(“添加“);
addbtn.setBounds(301607030);
changebtn=new JButton(“更改“);
changebtn.setBounds(1301607030);
//依次添加组件
con.add(lab1);
con.add(lab2);
con.add(lab3);
con.add(lab4);
con.add(pname);
con.add(pnum);
con.add(pprice);
con.add(pclass);
con.add(addbtn);
con.add(changebtn);
//设置属性
super.settitle(“添加商品“);
super.setSize(350 272);
super.setResizable(false);
super.setDefaultCloseOperation(super.DISPOSE_ON_CLOSE);
super.setVisible(true);
//给2个按钮添加监听
ButtonListener listener1 = new ButtonListener();
addbtn.addActionListener(listener1);
changebtn.addActionListener(listener1);
}
//事件监听器接口
class ButtonListener implements ActionListener{
public void actionPerformed(ActionEvent e){
object source=e.getSource();
Product product = new Product();
if(source instanceof JButton ){
JButton jb=(JButton)source;//按钮
String txt=jb.getText();
String name = pname.getText();
int num = Integer.parseInt(pnum.getText());
int price = Integer.parseInt(pprice.getText());
String pclazz = pclass.getText();
if(txt.equals(“添加“)){
if(!(name.equals(““)&&pnum.getText().equals(““)&&pprice.getText().equals(““)&&
pclazz.equals(““))) {
if(product.addPro(namenumpricepclazz)) {
JOptionPane.showMessageDialog(null “添加成功!“);
}
}else {
JOptionPane.showMessageDialog(null “添加失败!“);
}
}else if(txt.equals(“更改“)){
if(!(name.equals(““)&&pnum.getText().equals(““)&&pprice.getText().equ
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-07-19 17:01 GUI的超市管理系统(mysql+java)\
文件 1844 2018-07-19 16:53 GUI的超市管理系统(mysql+java)\market.sql
目录 0 2018-07-19 16:54 GUI的超市管理系统(mysql+java)\product_system\
文件 384 2018-07-01 15:10 GUI的超市管理系统(mysql+java)\product_system\.classpath
文件 390 2018-07-01 01:46 GUI的超市管理系统(mysql+java)\product_system\.project
目录 0 2018-07-19 16:54 GUI的超市管理系统(mysql+java)\product_system\.settings\
文件 718 2018-07-19 16:41 GUI的超市管理系统(mysql+java)\product_system\.settings\org.eclipse.jdt.core.prefs
目录 0 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\
目录 0 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\
目录 0 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\
目录 0 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\
文件 2136 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\AddPro$ButtonListener.class
文件 2220 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\AddPro.class
文件 2246 2018-07-19 16:59 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Login$ButtonListener.class
文件 2352 2018-07-19 16:59 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Login.class
文件 826 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$1.class
文件 1481 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$2.class
文件 1924 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$3.class
文件 1208 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$4.class
文件 1214 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$5.class
文件 826 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$6.class
文件 1298 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$7.class
文件 1802 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management$8.class
文件 3956 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Product_Management.class
文件 2222 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Regist$ButtonListener.class
文件 2390 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\main\Regist.class
目录 0 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\sql\
文件 2287 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\sql\Loj.class
文件 4297 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\sql\Product.class
文件 1675 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\sql\User.class
目录 0 2018-07-19 16:56 GUI的超市管理系统(mysql+java)\product_system\bin\com\system\sqlserverConn\
............此处省略16个文件信息
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
- java8学习教程之lambda表达式的使用方法
评论
共有 条评论