• 大小: 1.07MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-26
  • 语言: Java
  • 标签: Java  

资源简介

基于Java的考试管理系统源代码,简单好用

资源截图

代码片段和文件信息

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;
}
}

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

     文件        382  2011-02-19 16:52  第11章  考试管理系统\.classpath

     文件        427  2011-02-25 08:50  第11章  考试管理系统\.project

     文件        629  2011-02-19 16:52  第11章  考试管理系统\.settings\org.eclipse.jdt.core.prefs

     文件       1905  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\ChDeal.class

     文件       1725  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\Grade.class

     文件       1561  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\GradeResult.class

     文件       2480  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\MyMD5.class

     文件       2063  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\Question.class

     文件        742  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\QuestionType.class

     文件       1813  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\Stat.class

     文件       1329  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\bean\User.class

     文件        776  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\Addframe$1.class

     文件        803  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\Addframe$2.class

     文件        803  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\Addframe$3.class

     文件        566  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\Addframe$4.class

     文件       8054  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\Addframe.class

     文件        776  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddJudge$1.class

     文件        803  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddJudge$2.class

     文件        803  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddJudge$3.class

     文件        803  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddJudge$4.class

     文件       9145  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddJudge.class

     文件        804  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddMoreframe$1.class

     文件        831  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddMoreframe$2.class

     文件        831  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddMoreframe$3.class

     文件        831  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddMoreframe$4.class

     文件      11129  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddMoreframe.class

     文件        811  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddRadioframe$1.class

     文件        838  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddRadioframe$2.class

     文件        838  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddRadioframe$3.class

     文件        838  2011-03-10 08:52  第11章  考试管理系统\bin\com\Exam\controller\AddRadioframe$4.class

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

评论

共有 条评论