• 大小: 2.69MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-15
  • 语言: Java
  • 标签:

资源简介

Java酒店管理系统课程设计,采用Java+Eclipse+MySQL进行开发,分为了管理员和普通用户,普通用户需要注册,管理员是内置的admin账号 完成时间20160706 提示: 1、项目里面的hotelSystem_20160706\src\hadwin\mainMethodEntrance.java是整个项目的入口 2、由于连注册的时候需要用到数据库hotelSystem_20160706\src\db\Jdbc.java是关于数据的连接部分,在这里可以修改为自己的数据库名和user和password 3、建议只在MySQL中(其他数据库连接时需要做相应的修改),创建一个hotelsystem数据库(表什么的都不用建立),然后在2中修改成你自己的数据库账号和密码,然后直接用管理员账户admin(账户密码都是),进入后点击菜单上面的系统管理->数据回滚—>然后选中hotelSystem_20160706\hotelsystem.sql这个是我用的数据备份里面初始化了一些数据和表结构,这样子就可以很简单的恢复了项目的数据库数据和结构 4、数据库这块正确了,就是正确的打开该项目的方式。如果3的方式不会的话,也可以将hotelSystem_20160706\hotelsystem.sql代码语句在MySQL里面执行一遍就行了 5、由于个人水平,代码肯定还有一些不完善的地方需要完善,见谅 20160706 Runs Wang

资源截图

代码片段和文件信息

package dao;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;

import db.Jdbc;

public class EntityDaoForChangePassword {
/**
 * 这里需要实现的是通过用户名来修改密码
 * @throws SQLException 
 * 
 */
public void changePassword(String accountString passwordNew) throws SQLException{
//获取数据库连接
Connection conn=Jdbc.getConnection();
//SQL
String sql=“ update keren set KerenPassword=? “+
           “ where KerenAccount=? “;
//预编译
PreparedStatement stmt=conn.prepareStatement(sql);
stmt.setString(1 passwordNew);
stmt.setString(2 account);
//正式执行
stmt.execute();
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2016-07-06 08:04  hotelSystem_20160706\
     文件         310  2016-07-06 08:01  hotelSystem_20160706\.classpath
     文件         386  2016-07-06 08:01  hotelSystem_20160706\.project
     目录           0  2016-07-06 08:01  hotelSystem_20160706\bin\
     目录           0  2016-07-06 08:01  hotelSystem_20160706\bin\dao\
     文件        1052  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForChangePassword.class
     文件        3281  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForkeren_room.class
     文件        6983  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForLabor.class
     文件        2342  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForLogin.class
     文件        2919  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForReserveRoom.class
     文件        5931  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForUser.class
     文件        1443  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForUserName.class
     文件        1258  2016-07-06 08:01  hotelSystem_20160706\bin\dao\EntityDaoForUserRegister.class
     目录           0  2016-07-06 08:01  hotelSystem_20160706\bin\db\
     文件        1184  2016-07-06 08:01  hotelSystem_20160706\bin\db\Jdbc.class
     目录           0  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\
     文件        1023  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\addLaborframe$1.class
     文件        2905  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\addLaborframe$jButtonAction.class
     文件        9057  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\addLaborframe.class
     文件        1017  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\addUserframe$1.class
     文件        2338  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\addUserframe$jButtonAction.class
     文件        8886  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\addUserframe.class
     文件        1120  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\changePasswordframe$1.class
     文件        2493  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\changePasswordframe$2.class
     文件        3976  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\changePasswordframe.class
     文件         769  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\DateChooserframe2_20160621$ClickButton.class
     文件        1294  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\DateChooserframe2_20160621.class
     文件        1041  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\deleteLaborframe$1.class
     文件         860  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\deleteLaborframe$2.class
     文件        1214  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\deleteLaborframe$3.class
     文件        2984  2016-07-06 08:01  hotelSystem_20160706\bin\hadwin\deleteLaborframe$4.class
............此处省略259个文件信息

评论

共有 条评论

相关资源