91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

本作品為本人本科二年級課程作業(yè)成果。店客房管理信息系統(tǒng)是基于Java開發(fā)的管理系統(tǒng)軟件。使用Eclipse IDE 開發(fā),JDK版本為10.0.1。資源中附有店客房管理信息系統(tǒng)項目的所有源代碼,另外還附有該系統(tǒng)的設計文檔,文檔中寫明了該系統(tǒng)的詳細設計實現(xiàn)過程。僅適用于軟件、計算機專業(yè)的實訓和課程作業(yè)的參考!
如有任何疑問,請郵件聯(lián)系博主 jianpengliao@outlook.com

資源截圖

代碼片段和文件信息

package?com.HotelMnager;


import?java.awt.Color;
import?java.awt.Font;
import?java.awt.Image;
import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
import?java.awt.event.WindowAdapter;
import?java.awt.event.WindowEvent;
import?java.util.Vector;

import?javax.swing.ImageIcon;
import?javax.swing.JButton;
import?javax.swing.Jframe;
import?javax.swing.JLabel;
import?javax.swing.JOptionPane;
import?javax.swing.JPanel;
import?javax.swing.JScrollPane;
import?javax.swing.JTable;
import?javax.swing.border.EmptyBorder;
import?javax.swing.border.LineBorder;
import?javax.swing.table.DefaultTableModel;


public?class?AdminBookInWin?extends?Jframe?{

/**
?*?
?*/
private?static?final?long?serialVersionUID?=?3L;


private?JPanel?contentPane;
private?JTable?table;
private?Vector>?rowDate;
private?Vector?rowName;
private?JButton?buttonAlter;
private?JButton?buttonAdd;
private?JButton?buttonDelete;
private?Bill?bill;
private?JButton?buttonCancel;
DefaultTableModel?model;
private?JButton?buttonRenew;
private?JScrollPane?JSP;


public?AdminBookInWin()?{
settitle(“\u767B\u8BB0\u5165\u4F4F\u7BA1\u7406“);
setDefaultCloseOperation(Jframe.DISPOSE_ON_CLOSE);
setBounds(280?40?1150?800);
contentPane?=?new?JPanel();
contentPane.setBorder(new?EmptyBorder(5?5?5?5));
setContentPane(contentPane);
contentPane.setLayout(null);

//添加背景圖片
ImageIcon?background;
JLabel?backgroundLabel?=?new?JLabel(““);?
background?=?new?ImageIcon(“image\\BG2.jpg“);??????????????????????????????
//圖片適應窗口大小
Image?temp?=?background.getImage().getScaledInstance(this.getWidth()?this.getHeight()?Image.SCALE_DEFAULT);??
background?=?new?ImageIcon(temp);??
????????
backgroundLabel.setBounds(0?0?background.getIconWidth()background.getIconHeight());
backgroundLabel.setIcon(background);??????????????
getRootPane().add(backgroundLabel);

getContentPane().setBackground(new?Color(0000));

bill=new?Bill();

tablePaint();
???????
//更改
buttonAlter?=?new?JButton(“\u66F4\u6539“);
buttonAlter.addActionListener(new?ActionListener()?{
public?void?actionPerformed(ActionEvent?e)?{
int?row?=?table.getSelectedRow();//獲取選中的行號
if(row<0)
return;
boolean?d=checkAlter(row);
if(d==false)
{
JOptionPane.showMessageDialog(table?“輸入數(shù)據(jù)有誤失敗,請重試!“?“錯誤提示“?JOptionPane.ERROR_MESSAGE);
model.fireTableDataChanged();?//刷新
return;
}

tableAlter(row);
boolean?c?=?Main.jDB.AdminBookInRenew(bill);
if(c==false)
JOptionPane.showMessageDialog(table?“更改失敗,請重試!“?“錯誤提示“?JOptionPane.ERROR_MESSAGE);
else
model.fireTableDataChanged();?//刷新
}
});
buttonAlter.setFont(new?Font(“宋體“?Font.PLAIN?17));
buttonAlter.setBounds(672?549?80?30);
contentPane.add(buttonAlter);

//增加
but

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-12-19?17:15??店客房管理信息系統(tǒng)\
?????文件?????????647??2019-12-19?17:17??店客房管理信息系統(tǒng)\Reedme.txt
?????目錄???????????0??2019-12-19?17:14??店客房管理信息系統(tǒng)\源代碼\
?????目錄???????????0??2019-12-19?17:14??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\
?????文件????????3201??2018-06-27?15:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\.classpath
?????文件?????????394??2018-06-26?03:33??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\.project
?????目錄???????????0??2019-12-19?17:14??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\.settings\
?????文件??????????89??2018-07-02?10:12??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\.settings\org.eclipse.core.resources.prefs
?????文件?????????595??2018-06-24?13:16??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2019-12-19?17:14??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\
?????目錄???????????0??2019-12-19?17:14??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\
?????目錄???????????0??2019-12-19?17:14??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\
?????文件????????1721??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin$1.class
?????文件????????2040??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin$2.class
?????文件????????1611??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin$3.class
?????文件?????????774??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin$4.class
?????文件?????????732??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin$5.class
?????文件?????????748??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin$6.class
?????文件????????6980??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminBookInWin.class
?????文件????????1801??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin$1.class
?????文件????????2122??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin$2.class
?????文件????????1659??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin$3.class
?????文件?????????816??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin$4.class
?????文件?????????768??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin$5.class
?????文件?????????790??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin$6.class
?????文件????????6795??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminExchangeRoomWin.class
?????文件????????1005??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminMainWin$1.class
?????文件?????????766??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminMainWin$10.class
?????文件?????????766??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminMainWin$11.class
?????文件?????????963??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminMainWin$2.class
?????文件?????????963??2018-07-02?19:28??店客房管理信息系統(tǒng)\源代碼\HotelManagerSystem\bin\com\HotelMnager\AdminMainWin$3.class
............此處省略176個文件信息

評論

共有 條評論