資源簡介
在線考試系統是一種環保的考試形式,所有的步驟都在電腦上完成。通過對國內高校對題庫、考試、練習、考試數據分析、檔案管理等的需求,從基本信息、試題建設、題庫規劃、移動練習、智能組卷、自定義輸出、智能排考、數據分析等進行了全流程設計。用戶可通過流程定義將現有的管理流程移植到考試系統中,也可自定義管理流程,從而解決學校教考分離的難點和痛點。
現在流行的考試系統都是基于云架構設計,引入了大量的國際先進的信息處理技術,并結合移動互聯,支持目前流行的大部分音視頻和圖片格式,同時可對數學公式、化學公式直接進行處理,可實現傳統考試到無紙化考試的完整切換。
在線考試系統可實現智能組卷、智能排考、智能閱卷等功能,用戶可實時進行不同程度的干預和調整,從而使整個過程更符合用戶要求。一線老師只負責按照考綱教學和試題庫建設,考試管理人員負責組織試題建設和從試題庫中抽取試卷考試,考試評價由系統根據一定的評價模型自動生成,從而實現了分散建設、集中管理和統一應用的目標。考場抽題組卷智能化、主客觀題作答無紙化、主觀題教師閱卷網絡化、考試質量分析自動化,大大降低了考試過程的人為干預程度,保證了考試效果和教學評價的客觀性和公正性。
任課老師可隨時安排開放練習和階段性測試,并通過后臺隨時查看學生練習情況和知識掌握情況,據此實時調整教學安排,從而使教學更有針對性。學生可通過移動終端隨時進行課程練習和自測,從而即時進行知識鞏固并且隨時掌握自己對知識的掌握程度。
代碼片段和文件信息
package?com.etest.action;
import?java.io.IOException;
import?java.io.PrintWriter;
import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
import?com.etest.dao.IUser;
import?com.etest.dao.impl.IUserImpl;
public?class?CheckUserNoAction?extends?HttpServlet?{
/**
?*?檢測學號是否被使用
?*/
public?CheckUserNoAction()?{
super();
}
/**
?*?Destruction?of?the?servlet.?
?*/
public?void?destroy()?{
super.destroy();?//?Just?puts?“destroy“?string?in?log
//?Put?your?code?here
}
/**
?*?The?doGet?method?of?the?servlet.?
?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?get.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doGet(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
String?u_no=request.getParameter(“u_no“);
IUser?iu=new?IUserImpl();
PrintWriter?out=response.getWriter();
if?(iu.checkUserByNo(u_no))?{
????out.print(“false“);//如果學號已被使用,向頁面返回“false“字符串。
}else{
out.print(“true“);//如果學號未被使用,向頁面返回“true“字符串。
}
}
/**
?*?The?doPost?method?of?the?servlet.?
?*
?*?This?method?is?called?when?a?form?has?its?tag?value?method?equals?to?post.
?*?
?*?@param?request?the?request?send?by?the?client?to?the?server
?*?@param?response?the?response?send?by?the?server?to?the?client
?*?@throws?ServletException?if?an?error?occurred
?*?@throws?IOException?if?an?error?occurred
?*/
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
throws?ServletException?IOException?{
doGet(requestresponse);
}
/**
?*?Initialization?of?the?servlet.?
?*
?*?@throws?ServletException?if?an?error?occurs
?*/
public?void?init()?throws?ServletException?{
//?Put?your?code?here
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????455??2013-10-11?09:39??.classpath
?????目錄???????????0??2013-10-11?09:37??.myeclipse\
?????文件?????????288??2013-10-11?09:37??.myme
?????文件?????????262??2013-10-08?22:41??.mystrutsdata
?????文件??????????66??2013-09-30?13:58??.myumldata
?????文件????????1494??2013-10-08?22:41??.project
?????目錄???????????0??2013-10-11?09:37??.settings\
?????文件?????????500??2013-09-30?13:58??.settings\.jsdtscope
?????文件?????????330??2013-09-30?13:58??.settings\org.eclipse.jdt.core.prefs
?????文件??????????49??2013-09-30?13:58??.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2013-09-30?13:58??.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2013-10-11?09:37??src\
?????目錄???????????0??2013-10-11?09:37??src\com\
?????目錄???????????0??2013-10-11?09:37??src\com\etest\
?????目錄???????????0??2013-10-11?09:37??src\com\etest\action\
?????文件????????2163??2013-09-30?13:58??src\com\etest\action\CheckUserNoAction.java
?????文件????????1152??2013-10-04?23:10??src\com\etest\action\CourseAddAction.java
?????文件????????1012??2013-09-30?13:58??src\com\etest\action\CourseDelAction.java
?????文件????????1487??2013-09-30?13:58??src\com\etest\action\CourseListAction.java
?????文件????????2671??2013-09-30?13:58??src\com\etest\action\GetAllClassAction.java
?????文件????????1200??2013-09-30?13:58??src\com\etest\action\GetAllCourseAction.java
?????文件????????2568??2013-10-03?23:56??src\com\etest\action\GetClassCourseUserAction.java
?????文件????????1788??2013-09-30?13:58??src\com\etest\action\GetSingleChoiceAction.java
?????文件????????1200??2013-09-30?13:58??src\com\etest\action\GetTestCourseAction.java
?????文件????????1682??2013-10-03?00:13??src\com\etest\action\GetUserByClassAction.java
?????文件????????2727??2013-09-30?13:58??src\com\etest\action\InitUserPwdAction.java
?????文件????????2791??2013-09-30?13:58??src\com\etest\action\LoginAction.java
?????文件?????????821??2013-09-30?13:58??src\com\etest\action\LoginOutAction.java
?????文件????????1326??2013-09-30?13:58??src\com\etest\action\OptionContextDelAction.java
?????文件????????2486??2013-10-04?21:48??src\com\etest\action\SaveSingleChoiceAction.java
?????文件????????2541??2013-10-03?22:13??src\com\etest\action\SingleChoiceAddAction.java
............此處省略149個文件信息
- 上一篇:可同時搜索多個文件的多線程快速搜索源碼
- 下一篇:傅里葉變換與反傅里葉變換
評論
共有 條評論