• 大小: 282KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2022-11-14
  • 语言: Java
  • 标签: Java  MySQL  

资源简介

运行程序后,打开程序登录界面。可以以考生或管理员进行登录,以考生登录则,进入考试界面,以管理员登录则进入后台管理界面。下面先以管理员进行登录,输入管理员用户名mr,密码mrosft,单击“登录”按钮,进入后台管理界面,后台主要可添加试题、添加用户、设置考试参数等。

资源截图

代码片段和文件信息

package com.Exam.bean;

import java.text.SimpleDateFormat;
import java.util.*;

//字符处理类
public class ChDeal {
public static String toChinese(String strvalue) {
try {
if (strvalue == null) {
return ““;
} else {
strvalue = new String(strvalue.getBytes(“gb2312“) “GBK“)
.trim();
return strvalue;
}
} catch (Exception e) {
return ““;
}
}

public static String toISO(String strValue) {
try {
if (strValue == null) {
return ““;
} else {
strValue = new String(strValue.getBytes(“GBK“) “gb2312“)
.trim();
return strValue;
}
} catch (Exception e) {
return ““;
}
}

/**
 * 完成从字符串到String数组的转换
 * 
 * @param str
 * @return
 */
public static String[] str2IntegerArr(String str){
String[] is = null ;
if(str != null && !str.equalsIgnoreCase(““)){
String[] ss = str.split(“ “);
if(ss != null && ss.length > 0){
is = new String[ss.length];
for(int i = 0 ; i < ss.length ; i ++){
is[i] = ss[i];
}
}
}
return is ;
}
// 编写获得日期和时间的方法.
public static String  getDateTime(){ //该方法返回值为String类型
SimpleDateFormat format;                                //simpleDateFormat类使得可以选择任何用户定义的日期-时间格式的模式
Date date = null;
Calendar myDate = Calendar.getInstance();               //Calendar 的方法 getInstance,以获得此类型的一个通用的对象
myDate.setTime(new java.util.Date());                   //使用给定的 Date 设置此 Calendar 的时间
date = myDate.getTime();                                //返回一个表示此 Calendar 时间值(从历元至现在的毫秒偏移量)的 Date 对象
format = new SimpleDateFormat(“yyyy-MM-dd HH:mm:ss“);   //设置时间格式为:年、月、日、时、分、秒
String strRtn = format.format(date);                    //将给定的 Date 格式化为日期/时间字符串,并将结果赋值给 给定的 String
return strRtn;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         65  2008-11-07 15:50  在线考试系统\Database\db_exam\db.opt

     文件       8798  2008-11-07 16:00  在线考试系统\Database\db_exam\tb_grade.frm

     文件          0  2008-11-07 16:00  在线考试系统\Database\db_exam\tb_grade.MYD

     文件       1024  2008-11-07 16:00  在线考试系统\Database\db_exam\tb_grade.MYI

     文件      12938  2008-11-07 15:56  在线考试系统\Database\db_exam\tb_question.frm

     文件       1520  2008-11-12 15:28  在线考试系统\Database\db_exam\tb_question.MYD

     文件       2048  2008-11-12 15:31  在线考试系统\Database\db_exam\tb_question.MYI

     文件       8588  2008-11-07 15:54  在线考试系统\Database\db_exam\tb_questiontype.frm

     文件         60  2008-11-10 17:06  在线考试系统\Database\db_exam\tb_questiontype.MYD

     文件       2048  2008-11-10 17:09  在线考试系统\Database\db_exam\tb_questiontype.MYI

     文件       8820  2008-11-07 16:04  在线考试系统\Database\db_exam\tb_stat.frm

     文件         33  2008-11-11 11:03  在线考试系统\Database\db_exam\tb_stat.MYD

     文件       1024  2008-11-11 11:23  在线考试系统\Database\db_exam\tb_stat.MYI

     文件       8704  2008-11-07 15:51  在线考试系统\Database\db_exam\tb_user.frm

     文件        124  2008-11-10 16:59  在线考试系统\Database\db_exam\tb_user.MYD

     文件       2048  2008-11-10 17:09  在线考试系统\Database\db_exam\tb_user.MYI

     文件        305  2008-11-29 10:48  在线考试系统\Exam\.classpath

     文件        380  2008-08-01 13:15  在线考试系统\Exam\.project

     文件       1905  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\ChDeal.class

     文件       1725  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\Grade.class

     文件       1561  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\GradeResult.class

     文件       2480  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\MyMD5.class

     文件       2063  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\Question.class

     文件        742  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\QuestionType.class

     文件       1813  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\Stat.class

     文件       1329  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\bean\User.class

     文件        776  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\controller\Addframe$1.class

     文件        803  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\controller\Addframe$2.class

     文件        803  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\controller\Addframe$3.class

     文件        566  2008-12-04 14:26  在线考试系统\Exam\bin\com\Exam\controller\Addframe$4.class

............此处省略171个文件信息

评论

共有 条评论