数据库课程设计之酒店客房管理系统Word文档格式.doc

上传人:b****1 文档编号:13114836 上传时间:2022-10-05 格式:DOC 页数:13 大小:3.04MB
下载 相关 举报
数据库课程设计之酒店客房管理系统Word文档格式.doc_第1页
第1页 / 共13页
数据库课程设计之酒店客房管理系统Word文档格式.doc_第2页
第2页 / 共13页
数据库课程设计之酒店客房管理系统Word文档格式.doc_第3页
第3页 / 共13页
数据库课程设计之酒店客房管理系统Word文档格式.doc_第4页
第4页 / 共13页
数据库课程设计之酒店客房管理系统Word文档格式.doc_第5页
第5页 / 共13页
点击查看更多>>
下载资源
资源描述

数据库课程设计之酒店客房管理系统Word文档格式.doc

《数据库课程设计之酒店客房管理系统Word文档格式.doc》由会员分享,可在线阅读,更多相关《数据库课程设计之酒店客房管理系统Word文档格式.doc(13页珍藏版)》请在冰豆网上搜索。

数据库课程设计之酒店客房管理系统Word文档格式.doc

房间表(房号,房类型,价格,押金,房状态)

开房客人表(客人姓名,性别,证件类型,证件号码,房类型,房号,联系电话,入住时间,预计离开时间)

预订客人表(客人姓名,性别,证件类型,证件号码,房类型,房号,联系电话,预计入住时间,预计离开时间)

历史客人表(客人姓名,性别,证件类型,证件号码,房类型,房号,联系电话,入住日期,离开日期)

四、详细设计

系统运行的主要界面如下:

登陆界面:

在登陆界面的密码JTextField中添加了KeyListener,使用户输入密码后按回车键就能登录到系统,代码如下:

jtextfield_key.addKeyListener(newKeyAdapter(){

publicvoidkeyPressed(KeyEvente){

//TODOAuto-generatedmethodstub

super.keyPressed(e);

if(e.getKeyChar()==KeyEvent.VK_ENTER){

Stringuser_name=jtextfield_user.getText().toString();

Stringuser_key=newString(jtextfield_key.getPassword());

//获取JPasswordField中的内容用此方法!

!

if(user_name.equals("

"

)||user_key.equals("

)){

JOptionPane.showMessageDialog(null,"

用户名或密码不能为空!

);

return;

}

else{

if(db.checkUser(user_name,user_key)){

mfa=newMainFrame_Admin();

mfa.setVisible(true);

setVisible(false);

}

else{

if(n==3){

JOptionPane.showMessageDialog(null,"

连续三次输入输入错误,系统将自动关闭!

System.exit(0);

}

JOptionPane.showMessageDialog(null,"

输入错误,还有"

+(3-n)+"

次输入机会"

n++;

jtextfield_user.setText("

jtextfield_key.setText("

return;

}

}

}

});

登陆后的主界面:

在本界面中插入了gif图片作为背景图,通过继承JPanel类,并复写paintComponent()方法使图片能处于JFrame框架的底层,使得窗口中放置其他组件比较容易,且外观比较好,代码如下:

packagedesign;

importjava.awt.Graphics;

importjava.awt.Image;

importjava.awt.Toolkit;

importjavax.swing.JPanel;

publicclassmyPanelextendsJPanel{

/**

*

*/

privatestaticfinallongserialVersionUID=1L;

privateImageimage=null;

publicmyPanel(){

image=Toolkit.getDefaultToolkit().getImage("

.\\image\\mainframe.gif"

}

@Override

protectedvoidpaintComponent(Graphicsg){

//TODOAuto-generatedmethodstub

super.paintComponent(g);

g.drawImage(image,0,0,800,600,getParent());

}

在选择完房间类型后,当房间号的JTextField获取焦点和失去焦点时,会自动出现提示信息,代码如下:

jtextfield_room.addFocusListener(newFocusAdapter(){

@Override

publicvoidfocusGained(FocusEvente){

super.focusGained(e);

if(jcombobox_room_type.getSelectedIndex()==0)

jlabel_tip_room_type.setText("

普通单人间的房间号码为:

101~109"

if(jcombobox_room_type.getSelectedIndex()==1)

普通双人间的房间号码为:

201~209"

if(jcombobox_room_type.getSelectedIndex()==2)

豪华单人间的房间号码为:

301~309"

if(jcombobox_room_type.getSelectedIndex()==3)

豪华双人间的房间号码为:

401~409"

publicvoidfocusLost(FocusEvente){

super.focusLost(e);

intn;

Stringpledge_string=db.getPledge(jtextfield_room.getText());

jtextfield_pledge.setText(pledge_string);

if(jtextfield_room.getText().equals("

n=0;

else

n=Integer.parseInt(jtextfield_room.getText());

if(jcombobox_room_type.getSelectedIndex()==0&

&

(n<

101||n>

109)){

JOptionPane.showMessageDialog(null,"

房间号输入有误!

return;

if(jcombobox_room_type.getSelectedIndex()==1&

201||n>

209)){

if(jcombobox_room_type.getSelectedIndex()==2&

301||n>

309)){

if(jcombobox_room_type.getSelectedIndex()==3&

401||n>

409)){

if(db.isRoomEmpty(jtextfield_room.getText())==false){

此房间已经有客人!

return;

房状态查看可显示各个房间的状态与基本信息,

预订管理的界面如下:

信息查询的界面如下:

查询的界面中“查找”按钮的代码如下:

privateJButtongetJButton_search(){

if(jbutton_search==null){

jbutton_search=newJButton("

查找"

jbutton_search.setBounds(280,10,80,30);

jbutton_search.addActionListener(newActionListener(){

publicvoidactionPerformed(ActionEvente){

Stringnum=jtextfield_input.getText();

if(db.isIdentityNumExist_checkin(num)==false){

证件号码不存在!

else{

jtable=getJTable(num);

jscrollpane.setViewportView(jtable);

jpanel.setVisible(false);

jpanel2.setVisible(true);

}

returnjbutton_search;

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 幼儿教育 > 育儿知识

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1