xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡(jiǎn)介

用java實(shí)現(xiàn)的簡(jiǎn)單地網(wǎng)絡(luò)競(jìng)價(jià)拍賣(mài)軟件 采用Eclipse軟件進(jìn)行編程,代碼量900,另有報(bào)告,需要者另聯(lián)系。由于本人的能力有限,其中的缺陷及不足敬請(qǐng)見(jiàn)諒

資源截圖

代碼片段和文件信息

import?java.awt.*;
import?java.awt.event.*;
import?java.net.ServerSocket;
import?java.util.ArrayList;

import?javax.net.ssl.SSLContext;
import?javax.swing.*;


public?class?AcutionServer?extends?Jframe?implements?ActionListener{
????String?winner?=?“NO?user“;
????int?salePrice?=?40;
int?nameID=0;
JPanel?jp?=?new?JPanel();
????
????JLabel?lowPrice?=?new?JLabel(“起價(jià)40?RMB¥“);
????
????JButton[]?jba?=?{
???? new?JButton(“下一件“)
???????? new?JButton(“競(jìng)拍“)
???????? new?JButton(“退出“)
????};
????
????CardLayout?cl?=?new?CardLayout();
????
????JLabel?userOlineJLabel?=?new?JLabel(“競(jìng)拍記錄“);
????JTextArea?text?=?new?JTextArea();
????JScrollPane?acutionLogSp?=?new?JScrollPane(text);
????
????JLabel?lastPricelb?=?new?JLabel(“成交價(jià)格?:“);
????JLabel?lastUserlb?=?new?JLabel(“成交用戶(hù)??:“);
????
????JLabel?countDown?=?new?JLabel(“拍賣(mài)倒數(shù)計(jì)時(shí)“);
????JTextField?timeJf?=?new?JTextField();
????
????JTextField?lastPriceTf?=?new?JTextField();
????JTextField?lastUserTf?=?new?JTextField();
????
????JLabel?onlineUserLb?=?new?JLabel(“在線用戶(hù)“);
????JList?onlineUserTa?=?new?JList();
????JScrollPane?onlineUserJp?=?new?JScrollPane(onlineUserTa);
????
????JLabel?userQ?=?new?JLabel(“用戶(hù)咨詢(xún)服務(wù)端“);
????JTextArea?questLoge?=?new???JTextArea();
????JScrollPane?questJp?=?new?JScrollPane(questLoge);
????JTextArea?answerJa?=?new?JTextArea();
????JScrollPane?answerJPane?=?new?JScrollPane(answerJa);
????JButton?answerOK?=?new?JButton(“發(fā)送“);
????
????ServerTread?st;
????CountThread?ct;
????ServerSocket?ss;
????ArrayList?alOnline?=?new?ArrayList();


public?AcutionServer(){
this.settitle(“競(jìng)價(jià)拍賣(mài)系統(tǒng)?服務(wù)器端????V0.01“);
this.setDefaultCloseOperation(Jframe.EXIT_ON_CLOSE);
this.setBounds(2020600800);
this.setVisible(true);
this.setLayout(null);
this.setState(false);



acutionLogSp.setBounds(29045250280);
this.add(acutionLogSp);

userOlineJLabel.setBounds(3302010020);
this.add(userOlineJLabel);

lastPricelb.setBounds(33036010020);
this.add(lastPricelb);
lastPriceTf.setBounds(40036010025);
lastPriceTf.setEditable(false);
this.add(lastPriceTf);

lastUserlb.setBounds(33040010020);
this.add(lastUserlb);
lastUserTf.setBounds(40040010025);
lastUserTf.setEditable(false);
this.add(lastUserTf);

onlineUserLb.setBounds(20460100?20?);
this.add(onlineUserLb);

onlineUserJp.setBounds(20?490?250?260);
this.add(onlineUserJp);

userQ.setBounds(29046010020);
this.add(userQ);

questJp.setBounds(290490250100);
questLoge.setEditable(false);
this.add(questJp);

answerJPane.setBounds(290600250100);
this.add(answerJPane);

answerOK.setBounds(3507208030);
this.add(answerOK);
answerOK.addActionListener(this);

countDown.setBounds(2040010020);
this.add(countDown);

timeJf.setBounds(15040010030);
timeJf.setEditable(false);
this.add(timeJf);


?屬性????????????大小?????日期????時(shí)間???名稱(chēng)
-----------?---------??----------?-----??----
?????目錄???????????0??2010-03-29?23:56??AcutionServer\
?????文件?????????301??2010-03-29?23:56??AcutionServer\.classpath
?????文件?????????389??2010-03-29?23:56??AcutionServer\.project
?????目錄???????????0??2010-03-29?23:56??AcutionServer\.settings\
?????文件?????????629??2010-03-29?23:56??AcutionServer\.settings\org.eclipse.jdt.core.prefs
?????文件???????13016??2010-04-11?13:18??AcutionServer\1.jpg
?????文件????????7782??2010-04-14?23:33??AcutionServer\2.jpg
?????文件???????12585??2010-04-11?13:18??AcutionServer\3.jpg
?????目錄???????????0??2010-03-29?23:56??AcutionServer\bin\
?????文件???????13016??2010-04-11?13:18??AcutionServer\bin\1.jpg
?????文件????????7782??2010-04-14?23:33??AcutionServer\bin\2.jpg
?????文件???????12585??2010-04-11?13:18??AcutionServer\bin\3.jpg
?????文件????????1605??2010-04-18?21:11??AcutionServer\bin\AcutionServer$1.class
?????文件????????6694??2010-04-18?21:11??AcutionServer\bin\AcutionServer.class
?????文件????????1254??2010-04-19?23:38??AcutionServer\bin\ClientServer$1.class
?????文件????????6847??2010-04-19?23:38??AcutionServer\bin\ClientServer.class
?????文件????????4596??2010-04-18?21:11??AcutionServer\bin\ClientThread.class
?????文件?????????776??2010-04-18?21:11??AcutionServer\bin\Count.class
?????文件????????3065??2010-04-18?21:11??AcutionServer\bin\CountThread.class
?????文件?????????687??2010-04-18?21:11??AcutionServer\bin\MySale.class
?????文件?????????709??2010-04-19?23:38??AcutionServer\bin\Sale.class
?????文件?????????973??2010-04-18?21:11??AcutionServer\bin\ServerTread.class
?????文件????????5175??2010-04-18?21:11??AcutionServer\bin\SeverAgentTread.class
?????目錄???????????0??2010-03-29?23:56??AcutionServer\src\
?????文件???????13016??2010-04-11?13:18??AcutionServer\src\1.jpg
?????文件????????7782??2010-04-14?23:33??AcutionServer\src\2.jpg
?????文件???????12585??2010-04-11?13:18??AcutionServer\src\3.jpg
?????文件????????6070??2010-04-18?02:50??AcutionServer\src\AcutionServer.java
?????文件????????6825??2010-04-19?23:38??AcutionServer\src\ClientServer.java
?????文件????????3786??2010-04-18?10:50??AcutionServer\src\ClientThread.java
?????文件????????2205??2010-04-18?10:59??AcutionServer\src\CountThread.java
............此處省略2個(gè)文件信息

評(píng)論

共有 條評(píng)論

相關(guān)資源