当前位置:
文档之家› Java课程设计超市库存管理系统附源代码可以直接运行
Java课程设计超市库存管理系统附源代码可以直接运行
p = new ImagePanel(new ImageIcon("E:/Java文件/SuperMarket/picture/1.jpg").getImage());
登录= new JButton("登录");
登录.addActionListener(this);
重置= new JButton("重置");
try{
Class.forName(dbdriver);
}
catch(ClassNotFoundException classnotfound){
System.out.println("未能找到SQLServerDriver,请检查是否已加载SQLServer驱动");
}
}
void init()
{
f = new Font("幼圆",Font.BOLD,18);
重置.addActionListener(this);
用户名= new JTextField(16);
用户名.setFont(f);
密码= new JPasswordField(16);
userName = new JLabel("用户名:");
userName.setFont(f);
psw = new JLabel("密码:");
String user = "sa";
String pass = "123";
public loginframe()
{
setLayout(new FlowLayout());
init();
setBounds(130,80,960,600);
setVisible(true);
setResizable(false);
Function wMain;
Connection con;
Statement sql;
ResultSet rs;
String dbdriver = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
String dburl = "jdbc:sqlserver://localhost:1433;DatabaseName=LZS";
2、
1、本系统的每一个功能模块都包含了多个功能。整个系统主要完成对超市商品的日常管理,包括进货管理,库存管理和供应商管理等方面。在功能上系统可以完成对相关信息的浏览、查询、添加、删除、修改等功能。本课题的核心之一是销售管理、库存管理和进货管理三者之间的联系,同时系统有完整的用户管理功能。本系统采用java语言和SQL Server 2008作为开发工具。这种系统优势在于系统比较简单,但功能强大,扩展性能也比较好,完全能够处理一般超市的日常任务
2、整体分为3个模块(货物,供应商,记录)每个模块之间相互关联,都有自己的增删改查!
3、程序流程图如下:
3、
1、
Goods表:
Lzs(用户登录名,密码):
Recond表():记录表
Supplier(供应商表):
用户登录界面:
设计代码如下:
package source;
import java.awt.*;
baseBox.add(box2);
//baseBox.add(登录);
split = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,false,p,baseBox);
split.setDividerLocation(0.5);
add(split,BorderLayout.PAGE_START);
import java.awt.event.*;
import javax.swing.*;
import java.sql.*;
@SuppressWarnings("serial")
public class loginframe extends JFrame implements ActionListener {
1、
本系统主要是用来帮助小型超市进行库存管理系统,能够有效的帮助小型超市进行库存管理!其中包括增删改查等基本的应用。极大的提高了超市的库存管理效率,节省了大量的时间。
***********************************************************
***********************************************************
JTextFBiblioteka eld用户名;JPasswordField密码;
JButton登录,重置;
Box baseBox,box1,box2,box3;//盒式布局
ImagePanel p;//用于插入图片的面板
JSplitPane split;//拆分窗格
Font f;//设置字体
JLabel userName,psw;
box2.add(用户名);
box2.add(Box.createVerticalStrut(20));
box2.add(密码);
box2.add(Box.createVerticalStrut(20));
box3 = Box.createHorizontalBox();
box3.add(登录);
box3.add(Box.createHorizontalStrut(20));
box3.add(重置);
box2.add(box3);
box2.add(Box.createVerticalStrut(200));
baseBox = Box.createHorizontalBox();
baseBox.add(box1);
baseBox.add(Box.createHorizontalStrut(15));
psw.setFont(f);
box1 = Box.createVerticalBox();
box1.add(userName);
box1.add(Box.createVerticalStrut(20));
box1.add(psw);
box2 = Box.createVerticalBox();
box2.add(Box.createVerticalStrut(240));
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource() ==登录){