资源简介

利用JavaSwing来制作的超市信息管理系统,主要包括用户管理 职工管理 客户管理 供应商管理 和入库和出库管理。非常简单的系统 非常适合初学者的练习,希望大家喜欢。

资源截图

代码片段和文件信息

/**
 * 数据库操作
 */
package dao;
import java.sql.Connection;
import java.sql.Date;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import mode.Employee;
import mode.Gongyingshang;
import mode.Kehu;
import mode.ShangPinInfo;
import mode.User;
public class Conn {
private Connection connection=null;
private Statement stmt;
private PreparedStatement statement;
private ResultSet res;
private List list;
//创建数据库连接
public Connection getConnection() {
String url=“jdbc:mysql://localhost:3306/db_jxc?useSSL=false“;
String user=“root“;
String password=“root“;
try {
Class.forName(“com.mysql.jdbc.D

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

     文件        389  2018-01-18 08:36  12312312\shengda\.classpath

     文件        383  2018-01-17 14:47  12312312\shengda\.project

     文件        598  2018-01-17 14:47  12312312\shengda\.settings\org.eclipse.jdt.core.prefs

     文件      11802  2018-01-30 16:02  12312312\shengda\bin\dao\Conn.class

     文件       2412  2018-01-30 10:04  12312312\shengda\bin\frame\About.class

     文件        643  2018-01-30 10:04  12312312\shengda\bin\frame\Customer$1.class

     文件        641  2018-01-30 10:04  12312312\shengda\bin\frame\Customer$2.class

     文件       5867  2018-01-30 10:04  12312312\shengda\bin\frame\Customer.class

     文件       2051  2018-01-30 10:04  12312312\shengda\bin\frame\CustomerEdit$deleteListener.class

     文件       2350  2018-01-30 10:04  12312312\shengda\bin\frame\CustomerEdit$saveListener.class

     文件       1313  2018-01-30 10:04  12312312\shengda\bin\frame\CustomerEdit$tableListener.class

     文件       7470  2018-01-30 10:04  12312312\shengda\bin\frame\CustomerEdit.class

     文件       2128  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeAdd$1.class

     文件       1003  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeAdd$2.class

     文件       6234  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeAdd.class

     文件       2226  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeEdit$deleteListener.class

     文件       2982  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeEdit$saveaddListener.class

     文件       1711  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeEdit$tableListener.class

     文件       9127  2018-01-30 10:04  12312312\shengda\bin\frame\EmployeeEdit.class

     文件        674  2018-01-30 10:04  12312312\shengda\bin\frame\Gongyingshang$1.class

     文件        674  2018-01-30 10:04  12312312\shengda\bin\frame\Gongyingshang$2.class

     文件       3438  2018-01-30 10:04  12312312\shengda\bin\frame\Gongyingshang.class

     文件       1951  2018-01-30 10:04  12312312\shengda\bin\frame\GongyingshangEdit$deleteListener.class

     文件       2216  2018-01-30 10:04  12312312\shengda\bin\frame\GongyingshangEdit$saveListener.class

     文件       1300  2018-01-30 10:04  12312312\shengda\bin\frame\GongyingshangEdit$tableListener.class

     文件       7218  2018-01-30 10:04  12312312\shengda\bin\frame\GongyingshangEdit.class

     文件        657  2018-01-30 10:04  12312312\shengda\bin\frame\Login$1.class

     文件        714  2018-01-30 10:04  12312312\shengda\bin\frame\Login$2.class

     文件        876  2018-01-30 10:04  12312312\shengda\bin\frame\Login$3.class

     文件       4734  2018-01-30 10:04  12312312\shengda\bin\frame\Login.class

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

评论

共有 条评论