freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于文字水印的談判系統(tǒng)設(shè)計與實現(xiàn)畢業(yè)論文-文庫吧

2025-06-09 15:57 本頁面


【正文】 20昵稱passwordvarchar50密碼sexvarchar2性別ageint4年齡departIDint4部門號photoint4電話varchar50郵箱地址namevarchar50姓名字段名稱數(shù)據(jù)類型字段大小說明departIDint4部門號departNamevarchar50部門名稱departMemovarchar100部門職責(zé)具體數(shù)據(jù)庫內(nèi)容展示:4 系統(tǒng)運行平臺 系統(tǒng)運行環(huán)境系統(tǒng)運行平臺:操作系統(tǒng)winAll/winXP,數(shù)據(jù)庫:安裝了SQL Server 2005 系統(tǒng)開發(fā)平臺系統(tǒng)采用MyEclipse開發(fā),而后臺數(shù)據(jù)的存儲采用數(shù)據(jù)可SQL Server 20055 系統(tǒng)實現(xiàn)和核心模塊的描述 登陸界面用戶名格式必須正確且必須注冊過,登陸界面如圖所示:代碼實現(xiàn):/** * @() 2013226 * Copy Right Information : 淮陰師范學(xué)院 計算機科學(xué)與技術(shù)學(xué)院(軟件工程) * @author : 劉 超(計科0903 學(xué)號:210910018) * Project : 基于文字水印談判系統(tǒng)的設(shè)計與實現(xiàn) * JDK version used : * Comments : java類 * Environment :Win7/Win8/Win XP * Version : * Sr Date Modified By : * null * ************日本語版*********** * @() 2013226 * Copy Right Information : 淮陰師範(fàn)學(xué)院コンピュータの科學(xué)と技術(shù)學(xué)院(ソフト工程) * @author :りゅう ちょう( 計科0903 番號210910018) * Project : 文字に基づいて透かし交渉システムの設(shè)計と実現(xiàn) * JDK version used : * Comments : java類 * Environment :Win7/Win8/Win XP * Version : * Sr Date Modified By : * null **/package 。import 。import 。import 。import 。import .*。import 。import 。import .*。import 。import 。import 。import 。/** * 登陸界面類 * @author 劉 超 * */public class LoginUI extends JFrame{ private static final long serialVersionUID = 1L。 private JComboBox cbUserId。 private JPasswordField passwordField。 private JButton loginBtn。 private JButton cancelBtn。 private double screenWidth。//當(dāng)前屏幕的寬度 private double srceenHeight。//當(dāng)前屏幕的高度 private static final int width=360,height=280。 private ILoginDao loginHandle。 private VectorString userID。 /** * 登陸界面有參構(gòu)造函數(shù) * @param loginDao */ public LoginUI(ILoginDao loginDao){ super(用戶登錄界面)。 = loginDao。 userID = new VectorString()。 userID = readUserIDFromFile()。 cbUserId = new JComboBox(userID)。 (true)。 JTextField txtField = (JTextField)().getEditorComponent()。 MyDocument document = new MyDocument()。 (\\d+)。 (10)。 (document)。 (html請在這里輸入用戶號碼br用戶號碼只能輸入數(shù)字,最多輸入10位/html)。 passwordField = new JPasswordField(10)。 (39?!?9。)。 (html請在這里密碼br密碼必須是字符和數(shù)字/html)。 MyDocument documents = new MyDocument()。 (\\p{Alnum})。 (8)。 (documents)。 loginBtn = new JButton()。 cancelBtn = new JButton(退出)。 (Cancel)。 (new ActionListener(){ public void actionPerformed(ActionEvent e) { (1)。 } })。 Action loginMessage = new AbstractAction() { //發(fā)送消息Action private static final long serialVersionUID = 1L。 public void actionPerformed(ActionEvent e){ sendLoginMessage()。 //更新消息顯示框 } }。 ().put((ENTER),login)。 //鍵盤事件處理,接受回車事件 ().put(login,loginMessage)。 //回車時的處理(調(diào)用發(fā)送消息Action) (loginMessage)。 (登錄)。 (Login)。 } /** * 登陸界面的布局設(shè)置函數(shù) */ public void setLayout(){ JPanel contentPane = (JPanel)getContentPane()。 ((, 2))。 GridBagLayout gridbag = new GridBagLayout()。 (gridbag)。 (new JLabel(new ImageIcon(image\\)),new GridBagConstraints(0,0,3,1, ,new Insets(0,0,20,0),0,0))。 (new JLabel(用戶名:),new GridBagConstraints(0,1,1,1, ,new Insets(15,50,0,5),0,0))。 (cbUserId,new GridBagConstraints(1,1,2,1, ,new Insets(15,5,0,40),0,0))。(new JLabel(密 碼:),new GridBagConstraints(0,2,1,1, ,new Insets(10,50,0,5),0,0))。 (passwordField,new GridBagConstraints(1,2,2,1, ,new Insets(10,5,0,40),0,0))。 (loginBtn,new GridBagConstraints(1,3,1,1, ,new Insets(15,4,50,50),0,0))。 (cancelBtn,new GridBagConstraints(2,3,1,1, ,new Insets(15,35,50,40),0,0))。 setSize(width, height)。 Dimension dimension = ().getScreenSize()。 screenWidth = ()。 srceenHeight = ()。 ((int)screenWidth/2width/2, (int)srceenHeight/2height/2)。 setVisible(true)。 setResizable(false)。 setDefaultCloseOperation()。 } /** * 自定義文檔模型 * @author 劉 超 * */ public class MyDocument extends PlainDocument{ private static final long serialVersionUID = 1L。 Pattern pattern。 int maxSize = 10。 public void setAccpetPattern(String pattern){ = (pattern)。 } public void setMaxSize(int size){ maxSize = size。 } public void insertString(int offs, String str, AttributeSet a) throws BadLocationException{ if(getLength() == maxSize){ return。 } if(getLength() + () maxSize){ int i = maxSize getLength()。 str = (0, i)。 } if((str).matches()){ (offs, str, a)。 } } } /** * 發(fā)送登陸信息 */ private void sendLoginMessage(){ char[] pw = ()。 String userId= (String)()。 String password = new String(pw)。 if (!()amp。amp。 !()){ if(loginHa
點擊復(fù)制文檔內(nèi)容
高考資料相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1