资源简介
用java实现的简单地网络竞价拍卖软件
采用Eclipse软件进行编程,代码量900,另有报告,需要者另联系。由于本人的能力有限,其中的缺陷及不足敬请见谅
代码片段和文件信息
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(“起价40 RMB¥“);
JButton[] jba = {
new JButton(“下一件“)
new JButton(“竞拍“)
new JButton(“退出“)
};
CardLayout cl = new CardLayout();
JLabel userOlineJLabel = new JLabel(“竞拍记录“);
JTextArea text = new JTextArea();
JScrollPane acutionLogSp = new JScrollPane(text);
JLabel lastPricelb = new JLabel(“成交价格 :“);
JLabel lastUserlb = new JLabel(“成交用户 :“);
JLabel countDown = new JLabel(“拍卖倒数计时“);
JTextField timeJf = new JTextField();
JTextField lastPriceTf = new JTextField();
JTextField lastUserTf = new JTextField();
JLabel onlineUserLb = new JLabel(“在线用户“);
JList onlineUserTa = new JList();
JScrollPane onlineUserJp = new JScrollPane(onlineUserTa);
JLabel userQ = new JLabel(“用户咨询服务端“);
JTextArea questLoge = new JTextArea();
JScrollPane questJp = new JScrollPane(questLoge);
JTextArea answerJa = new JTextArea();
JScrollPane answerJPane = new JScrollPane(answerJa);
JButton answerOK = new JButton(“发送“);
ServerTread st;
CountThread ct;
ServerSocket ss;
ArrayList alOnline = new ArrayList();
public AcutionServer(){
this.settitle(“竞价拍卖系统 服务器端 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);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 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个文件信息
- 上一篇:JTable 动态添加数据
- 下一篇:JSP期末考试试题及答案
相关资源
- JSP期末考试试题及答案
- JTable 动态添加数据
- 最新版JamVM 1.5.2
- 图书管理系统JavaC/S架构
- java书籍Java从入门到精通(第三版)
- 简单的JSP+MySQL+MyEclipse图书管理系统的
- 达梦数据库的连接配置
- java风扇小程序
- Java版查找并打印有向图中的所有环路
- 详细的java学习路线_规划_步骤
- 旅行代理管理系统软件设计
- jspSmartUpload.jar(默认支持UTF-8编码)
- kafka java maven
- 手机QQ2012java通用版
- Java编写的MVC模式小系统
- Android中opengl es要实现Obj格式的3D导入
- java制作的输入法
- jadclipse_3.3.0.jar
- Eclipse IDE for Java EE Developers
- Java网络白板197032
- JAVA计算器小程序多进制计算、转换
- Sun_Java程序员认证考试题库
- MAVEN RSA签名生成验签
- Java编的生日祝福软件源代码
- java+SQL人事管理系统
- java多边形填充扫描线种子算法
- MQTT JAVA jar包 wmqtt.jar
- j2ee《网上书城》系统设计报告
- javajsp网页登陆
- 利用JAVA文件读写流编写的学生点名系
评论
共有 条评论