资源简介
A学员系统:
选择学员系统后直接 让用户输入用户名密码进行登录 登录后显示下面菜单
Q.退出
A1修改密码
A2直接随机生成一套试题答题
A3查询所有考试成绩
A4导出所有考试成绩
用户模块:登录、退出、修改密码
考试模块:开始考试、查询成绩、导出成绩
B管理员系统:
选择管理员系统之后 直接提示用户输入用户名密码,登录后显示下面菜单
Q.退出
B1增加考试学员
B2删除考试学员
B3修改考试学员
B4查询考试学员
B5增加考题
B6修改考题
B7删除考题
B8查询考题 按照id 或者 查询所有的
B9批量导入考题
![](http://www.nz998.com/pic/61031.jpg)
代码片段和文件信息
package cn.xdl.bean;
import java.io.Serializable;
public class Test implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private int id;
private int num;
private String question;
private String a;
private String b;
private String c;
private String d;
private int score;
private String right;
public Test() {
super();
// TODO Auto-generated constructor stub
}
public Test(String question String a String b String c String d int scoreString right) {
super();
this.question = question;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.right=right;
this.score = score;
}
public Test(int id int num String question String a String b String c String d int scoreString right) {
super();
this.id = id;
this.num = num;
this.question = question;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.right=right;
this.score = score;
}
public Test(int num String question String a String b String c String d int scoreString right) {
super();
this.num = num;
this.question = question;
this.a = a;
this.b = b;
this.c = c;
this.d = d;
this.right=right;
this.score = score;
}
public String getRight() {
return right;
}
public void setRight(String right) {
this.right = right;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public String getQuestion() {
return question;
}
public void setQuestion(String question) {
this.question = question;
}
public String getA() {
return a;
}
public void setA(String a) {
this.a = a;
}
public String getB() {
return b;
}
public void setB(String b) {
this.b = b;
}
public String getC() {
return c;
}
public void setC(String c) {
this.c = c;
}
public String getD() {
return d;
}
public void setD(String d) {
this.d = d;
}
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
public static long getSerialversionuid() {
return serialVersionUID;
}
@Override
public String toString() {
return “Test [id=“ + id + “ num=“ + num + “ question=“ + question + “ a=“ + a + “ b=“ + b + “ c=“ + c
+ “ d=“ + d + “ score=“ + score + “]“;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-08 20:59 TestSystem\
目录 0 2018-09-20 14:26 TestSystem\SE_Client\
文件 379 2018-09-19 10:52 TestSystem\SE_Client\.classpath
文件 385 2018-09-19 09:35 TestSystem\SE_Client\.project
目录 0 2018-09-21 09:30 TestSystem\SE_Client\.settings\
文件 80 2018-09-21 09:30 TestSystem\SE_Client\.settings\org.eclipse.core.resources.prefs
文件 598 2018-09-19 09:35 TestSystem\SE_Client\.settings\org.eclipse.jdt.core.prefs
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\
文件 3589 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\Test.class
文件 1868 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\TestResult.class
文件 1837 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\bean\User.class
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\main\
文件 7915 2018-09-28 20:09 TestSystem\SE_Client\bin\cn\xdl\main\Main.class
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\test\
文件 1727 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\test\Test1.class
目录 0 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\view\
文件 7663 2018-09-26 19:28 TestSystem\SE_Client\bin\cn\xdl\view\ClientView.class
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\xdl\
目录 0 2018-09-21 15:25 TestSystem\SE_Client\src\cn\xdl\bean\
文件 2468 2018-09-21 11:10 TestSystem\SE_Client\src\cn\xdl\bean\Test.java
文件 1205 2018-09-21 16:29 TestSystem\SE_Client\src\cn\xdl\bean\TestResult.java
文件 1343 2018-09-19 10:54 TestSystem\SE_Client\src\cn\xdl\bean\User.java
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\xdl\main\
文件 8409 2018-09-28 20:08 TestSystem\SE_Client\src\cn\xdl\main\Main.java
目录 0 2018-09-20 14:26 TestSystem\SE_Client\src\cn\xdl\test\
文件 1124 2018-09-21 08:33 TestSystem\SE_Client\src\cn\xdl\test\Test1.java
............此处省略66个文件信息
- 上一篇:web育儿早教预约系统
- 下一篇:Notepad++ 7.2.2
相关资源
- FTP课程设计(服务端+客户端)
- MoNyog8.5+破解补丁
- ANSYS LS-DYNA
- 全国4级地址库,京东数据
- 一个超简单的企业管理系统(带ACCE
- 数据库课设:图书管理系统报告
- 编写简单的RMI程序 多线程web 服务器
- 合同管理系统的源代码(附数据库)
- ado数据库MFC图书管理系统vs2010
- 数据库VFP课程设计
- 数据库实现学生成绩管理系统选课管
- 排队机叫号 源代码
- Access数据库在线编辑器
- IOCP 类 简单的IOCP(IO完成端口)服务
- Php 导出数据为EXCEL程序
- 人大金仓数据库系统表
- 模拟ATM柜员机系统--连接数据库
- 用工厂模式开发多数据库连接类
- CVI下的TCP服务器和客户端
- 图片存储到数据库保存二进制文件并
- 数据库水印嵌入提取数据库水印数据
- SOCKET 网络编程 计算机网络 作业 客户
- 数据库课程设计以及指导思想
- 加班网上管理 单位
- 数据库课程设计报告(关于房地产销
- 用Socket写的简易FTP服务器和客户端
- 基于C 的简易FTP客户端(带源码)
- 数据库课程设计(改改直接交)
-
将数据库的表生成xm
l文件 - jar转exe工具 教程,exe能在客户端没有
评论
共有 条评论