热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

java酒店管理系统_java酒店管理系统(源码+数据库脚本)

【实例简介】一个很基础的Java实例,实现最基础的增删改查【实例截图】账号:01101密码:1234【核心代码】packagecom.sq

【实例简介】一个很基础的Java实例,实现最基础的增删改查

【实例截图】

账号:01101  密码:1234

2fd048313f616250dfbdb65551a92dbb.png

caea77ccbbd021ca94f016ded039160d.png

fecadd5244f7c1427f84273f2376a110.png

ce7a3edcaa455b5dc30d72f87485814d.png

5b1607a78a17fb6f9185cfdbdf47c6c0.png

e369546c2f39ab7fa2b23b2ff9f667e1.png

【核心代码】

package com.sqc.view;

import java.awt.BorderLayout;

import java.awt.EventQueue;

import javax.swing.JFrame;

import javax.swing.JPanel;

import javax.swing.JPasswordField;

import javax.swing.border.EmptyBorder;

import com.sqc.dao.UserDao;

import com.sqc.model.User;

import com.sqc.util.DbUtil;

import com.sqc.util.StringUtil;

import javax.swing.GroupLayout;

import javax.swing.GroupLayout.Alignment;

import javax.swing.BoxLayout;

import java.awt.FlowLayout;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import java.awt.Font;

import javax.swing.ImageIcon;

import javax.swing.JTextField;

import javax.swing.LayoutStyle.ComponentPlacement;

import javax.swing.JButton;

import java.awt.event.ActionListener;

import java.sql.Connection;

import java.awt.event.ActionEvent;

import java.awt.event.MouseAdapter;

import java.awt.event.MouseEvent;

public class LoginFra extends JFrame {

private JPanel contentPane;

private JTextField userName_text;

private JPasswordField password_text;

private DbUtil dbUtil=new DbUtil();

private UserDao userDao=new UserDao();

/**

* Launch the application.

*/

public static void main(String[] args) {

EventQueue.invokeLater(new Runnable() {

public void run() {

try {

LoginFra frame = new LoginFra();

frame.setVisible(true);

} catch (Exception e) {

e.printStackTrace();

}

}

});

}

/**

* Create the frame.

*/

public LoginFra() {

setTitle("\u6854\u5B50\u9152\u5E97\u7BA1\u7406\u7CFB\u7EDF");

setResizable(false);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setBounds(100, 100, 557, 444);

cOntentPane= new JPanel();

contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));

setContentPane(contentPane);

JLabel password = new JLabel("\u5458\u5DE5\u53F7\uFF1A");

password.setFont(new Font("华文行楷", Font.PLAIN, 18));

password.setIcon(new ImageIcon(LoginFra.class.getResource("/image/head.png")));

JLabel label = new JLabel("\u5BC6 \u7801\uFF1A");

label.setFont(new Font("华文行楷", Font.PLAIN, 18));

label.setIcon(new ImageIcon(LoginFra.class.getResource("/image/password.png")));

userName_text = new JTextField();

userName_text.setColumns(10);

JButton btn_login = new JButton("\u767B \u5F55");

btn_login.setIcon(new ImageIcon(LoginFra.class.getResource("/image/accept.png")));

btn_login.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

loginActionPerformed(e);

}

});

btn_login.setFont(new Font("微软雅黑", Font.PLAIN, 18));

JButton btn_cancel = new JButton("\u6E05 \u9664");

btn_cancel.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

btn_cancelActionPerformed(e);

}

});

btn_cancel.setIcon(new ImageIcon(LoginFra.class.getResource("/image/refersh.png")));

btn_cancel.setFont(new Font("微软雅黑", Font.PLAIN, 18));

password_text = new JPasswordField();

JButton btnNewButton = new JButton("");

btnNewButton.setIcon(new ImageIcon(LoginFra.class.getResource("/image/theme.jpg")));

GroupLayout gl_cOntentPane= new GroupLayout(contentPane);

gl_contentPane.setHorizontalGroup(

gl_contentPane.createParallelGroup(Alignment.LEADING)

.addGroup(gl_contentPane.createSequentialGroup()

.addGap(69)

.addGroup(gl_contentPane.createParallelGroup(Alignment.TRAILING)

.addComponent(label)

.addComponent(password))

.addGap(39)

.addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING, false)

.addComponent(btnNewButton, GroupLayout.PREFERRED_SIZE, 148, GroupLayout.PREFERRED_SIZE)

.addComponent(userName_text, GroupLayout.DEFAULT_SIZE, 202, Short.MAX_VALUE)

.addComponent(password_text))

.addContainerGap(127, Short.MAX_VALUE))

.addGroup(gl_contentPane.createSequentialGroup()

.addGap(93)

.addComponent(btn_login)

.addPreferredGap(ComponentPlacement.RELATED, 79, Short.MAX_VALUE)

.addComponent(btn_cancel, GroupLayout.PREFERRED_SIZE, 151, GroupLayout.PREFERRED_SIZE)

.addGap(67))

);

gl_contentPane.setVerticalGroup(

gl_contentPane.createParallelGroup(Alignment.LEADING)

.addGroup(gl_contentPane.createSequentialGroup()

.addGap(33)

.addComponent(btnNewButton, GroupLayout.PREFERRED_SIZE, 134, GroupLayout.PREFERRED_SIZE)

.addGap(27)

.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)

.addComponent(password)

.addComponent(userName_text, GroupLayout.PREFERRED_SIZE, 37, GroupLayout.PREFERRED_SIZE))

.addGap(40)

.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)

.addComponent(label)

.addComponent(password_text, GroupLayout.PREFERRED_SIZE, 37, GroupLayout.PREFERRED_SIZE))

.addPreferredGap(ComponentPlacement.RELATED, 21, Short.MAX_VALUE)

.addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE)

.addComponent(btn_login)

.addComponent(btn_cancel, GroupLayout.PREFERRED_SIZE, 54, GroupLayout.PREFERRED_SIZE))

.addGap(37))

);

contentPane.setLayout(gl_contentPane);

}

/**

* 登录事件处理

* @param e

*/

private void loginActionPerformed(ActionEvent evt) {

String userName=this.userName_text.getText();

String password=new String(this.password_text.getPassword());

if(StringUtil.isEmpty(userName)){

JOptionPane.showMessageDialog(null, "用户名不能为空!");

return;

}

if(StringUtil.isEmpty(password)){

JOptionPane.showMessageDialog(null, "密码不能为空!");

return;

}

User user=new User(userName,password);

Connection con=null;

try {

con=dbUtil.getCon();

User currentUser=userDao.login(con, user);

if(currentUser!=null){

dispose();

new MainFra().setVisible(true);

}else{

JOptionPane.showMessageDialog(null, "用户名或者密码错误!");

}

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally{

try {

dbUtil.closeCon(con);

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

/**

* 重置事件处理

* @param e

*/

private void btn_cancelActionPerformed(ActionEvent e) {

// TODO Auto-generated method stub

this.userName_text.setText("");

this.password_text.setText("");

}

}



推荐阅读
  • 本文介绍了如何通过C#语言调用动态链接库(DLL)中的函数来实现IC卡的基本操作,包括初始化设备、设置密码模式、获取设备状态等,并详细展示了将TextBox中的数据写入IC卡的具体实现方法。 ... [详细]
  • 问题场景用Java进行web开发过程当中,当遇到很多很多个字段的实体时,最苦恼的莫过于编辑字段的查看和修改界面,发现2个页面存在很多重复信息,能不能写一遍?有没有轮子用都不如自己造。解决方式笔者根据自 ... [详细]
  • 本文探讨了如何通过Service Locator模式来简化和优化在B/S架构中的服务命名访问,特别是对于需要频繁访问的服务,如JNDI和XMLNS。该模式通过缓存机制减少了重复查找的成本,并提供了对多种服务的统一访问接口。 ... [详细]
  • importjava.io.*;importjava.util.*;publicclass五子棋游戏{staticintm1;staticintn1;staticfinalintS ... [详细]
  • 本文详细介绍了如何利用 Bootstrap Table 实现数据展示与操作,包括数据加载、表格配置及前后端交互等关键步骤。 ... [详细]
  • 问题描述现在,不管开发一个多大的系统(至少我现在的部门是这样的),都会带一个日志功能;在实际开发过程中 ... [详细]
  • 本文深入探讨了Go语言中的接口型函数,通过实例分析其灵活性和强大功能,帮助开发者更好地理解和运用这一特性。 ... [详细]
  • spring boot使用jetty无法启动 ... [详细]
  • 如何从BAM文件绘制ATAC-seq插入片段长度分布图?
    在ATAC-seq数据处理中,插入片段长度的分布图是一个重要的质量控制指标,它能反映出核小体的周期性排列。本文将详细介绍如何从BAM文件中提取并绘制这些数据。 ... [详细]
  • 本文将从基础概念入手,详细探讨SpringMVC框架中DispatcherServlet如何通过HandlerMapping进行请求分发,以及其背后的源码实现细节。 ... [详细]
  • 高级缩放示例.就像谷歌地图一样.它仅缩放图块,但不缩放整个图像.因此,缩放的瓷砖占据了恒定的记忆,并且不会为大型缩放图像调整大小的图像.对于简化的缩放示例lookhere.在Win ... [详细]
  • 在开发iOS应用时,面对不同状态(如数据加载成功、无数据、未登录、网络异常等)的界面管理,如何实现既高效又美观的用户体验?本文探讨了几种最佳实践方法。 ... [详细]
  • 本文详细介绍了Elasticsearch中的分页查询机制,包括基本的分页查询流程、'from-size'浅分页与'scroll'深分页的区别及应用场景,以及两者在性能上的对比。 ... [详细]
  • 本文通过具体示例探讨了如何在iOS应用中有效使用scrollView,并解决了常见的无法滚动问题。不仅介绍了基础的使用方法,还详细讲解了代码实现的具体步骤。 ... [详细]
  • 本文介绍了如何利用Python中的Matplotlib库来绘制三维点云数据,并展示其外接的最大边界框。通过具体代码示例,帮助读者理解点云数据的可视化方法。 ... [详细]
author-avatar
aspzc
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有