在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → JSP在线考试系统

JSP在线考试系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:7.57M
  • 下载次数:47
  • 浏览次数:310
  • 发布时间:2020-08-16
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
基于JSP的在线考试系统 所使用工具为 myeclipse和mysql 打开软件 启动程序 打开数据库 在网页输入 localhost:8080/skaoshi 进入到学生登录页面 学生的初始账号密码:123 123 教师的初始账号密码:js js 管理员的初始账号密码:admin admin
【实例截图】
【核心代码】
系统
└── 系统
├── jspskaoshi.sql
├── src
│   ├── com
│   │   ├── action
│   │   │   ├── chengjiAction.java
│   │   │   ├── glyAction.java
│   │   │   ├── gonggaoAction.java
│   │   │   ├── huidaAction.java
│   │   │   ├── jiaoshiAction.java
│   │   │   ├── shijuanAction.java
│   │   │   ├── shitiAction.java
│   │   │   ├── xueshengAction.java
│   │   │   ├── zhangjieAction.java
│   │   │   └── zujuanAction.java
│   │   ├── bean
│   │   │   ├── chengji.java
│   │   │   ├── Course.java
│   │   │   ├── gly.java
│   │   │   ├── gonggao.java
│   │   │   ├── huida.java
│   │   │   ├── jiaoshi.java
│   │   │   ├── shijuan.java
│   │   │   ├── shiti.java
│   │   │   ├── xuesheng.java
│   │   │   ├── zhangjie.java
│   │   │   └── zujuan.java
│   │   ├── dao
│   │   │   ├── chengjiDao.java
│   │   │   ├── CourseDao.java
│   │   │   ├── glyDao.java
│   │   │   ├── gonggaoDao.java
│   │   │   ├── huidaDao.java
│   │   │   ├── jiaoshiDao.java
│   │   │   ├── shijuanDao.java
│   │   │   ├── shitiDao.java
│   │   │   ├── xueshengDao.java
│   │   │   ├── zhangjieDao.java
│   │   │   └── zujuanDao.java
│   │   └── util
│   │   ├── DBO.java
│   │   ├── MyFileUpload.java
│   │   └── StaticMethod.java
│   └── struts.xml
├── WebRoot
│   ├── chengji
│   │   ├── chengjiadd.jsp
│   │   ├── chengjidetail.jsp
│   │   ├── chengjilist.jsp
│   │   └── chengjimodify.jsp
│   ├── css
│   │   ├── Pager.css
│   │   ├── select.css
│   │   └── style.css
│   ├── editor
│   │   ├── kindeditor.js
│   │   ├── plugins
│   │   │   ├── about.html
│   │   │   ├── emoticons
│   │   │   │   ├── etc_01.gif
│   │   │   │   ├── etc_02.gif
│   │   │   │   ├── etc_03.gif
│   │   │   │   ├── etc_04.gif
│   │   │   │   ├── etc_05.gif
│   │   │   │   ├── etc_06.gif
│   │   │   │   ├── etc_07.gif
│   │   │   │   ├── etc_08.gif
│   │   │   │   ├── etc_09.gif
│   │   │   │   ├── etc_10.gif
│   │   │   │   ├── etc_11.gif
│   │   │   │   ├── etc_12.gif
│   │   │   │   ├── etc_13.gif
│   │   │   │   ├── etc_14.gif
│   │   │   │   ├── etc_15.gif
│   │   │   │   ├── etc_16.gif
│   │   │   │   ├── etc_17.gif
│   │   │   │   ├── etc_18.gif
│   │   │   │   ├── etc_19.gif
│   │   │   │   ├── etc_20.gif
│   │   │   │   ├── etc_21.gif
│   │   │   │   ├── etc_22.gif
│   │   │   │   ├── etc_23.gif
│   │   │   │   ├── etc_24.gif
│   │   │   │   ├── etc_25.gif
│   │   │   │   ├── etc_26.gif
│   │   │   │   ├── etc_27.gif
│   │   │   │   ├── etc_28.gif
│   │   │   │   ├── etc_29.gif
│   │   │   │   ├── etc_30.gif
│   │   │   │   ├── etc_31.gif
│   │   │   │   ├── etc_32.gif
│   │   │   │   ├── etc_33.gif
│   │   │   │   ├── etc_34.gif
│   │   │   │   ├── etc_35.gif
│   │   │   │   └── etc_36.gif
│   │   │   ├── flash.html
│   │   │   ├── image.html
│   │   │   ├── link.html
│   │   │   ├── media.html
│   │   │   ├── plainpaste.html
│   │   │   ├── remote_image.html
│   │   │   └── wordpaste.html
│   │   └── skins
│   │   ├── default.css
│   │   ├── default.gif
│   │   ├── div.gif
│   │   ├── dl.gif
│   │   ├── editor.css
│   │   ├── ol.gif
│   │   ├── p.gif
│   │   ├── tinymce.css
│   │   ├── tinymce.gif
│   │   └── ul.gif
│   ├── gly
│   │   ├── glyadd.jsp
│   │   ├── glydetail.jsp
│   │   ├── glylist.jsp
│   │   ├── glymodify.jsp
│   │   ├── modify.jsp
│   │   └── update.jsp
│   ├── gonggao
│   │   ├── gonggaoadd.jsp
│   │   ├── gonggaodetail.jsp
│   │   ├── gonggaolist.jsp
│   │   └── gonggaomodify.jsp
│   ├── huida
│   │   ├── huidaadd.jsp
│   │   ├── huidadetail.jsp
│   │   ├── huidalist.jsp
│   │   └── huidamodify.jsp
│   ├── images
│   │   ├── 001.jpg
│   │   ├── 404.png
│   │   ├── add.png
│   │   ├── btnbg1.png
│   │   ├── btnbg2.png
│   │   ├── btnbg.png
│   │   ├── buttonbg.png
│   │   ├── c01.png
│   │   ├── c02.png
│   │   ├── c03.png
│   │   ├── cbg.png
│   │   ├── clist.png
│   │   ├── close1.png
│   │   ├── close.png
│   │   ├── cloud.png
│   │   ├── d01.png
│   │   ├── d02.png
│   │   ├── d03.png
│   │   ├── d04.png
│   │   ├── d05.png
│   │   ├── d06.png
│   │   ├── d07.png
│   │   ├── diskbg.png
│   │   ├── dp.png
│   │   ├── f01.png
│   │   ├── f02.png
│   │   ├── f03.png
│   │   ├── f04.png
│   │   ├── f05.png
│   │   ├── f06.png
│   │   ├── help.png
│   │   ├── i01.png
│   │   ├── i02.png
│   │   ├── i03.png
│   │   ├── i04.png
│   │   ├── i05.png
│   │   ├── i06.png
│   │   ├── i07.png
│   │   ├── i08.png
│   │   ├── i09.png
│   │   ├── iadd.png
│   │   ├── ibtnbg.png
│   │   ├── ico01.png
│   │   ├── ico02.png
│   │   ├── ico03.png
│   │   ├── ico04.png
│   │   ├── ico05.png
│   │   ├── ico06.png
│   │   ├── icon01.png
│   │   ├── icon02.png
│   │   ├── icon03.png
│   │   ├── icon04.png
│   │   ├── icon05.png
│   │   ├── icon06.png
│   │   ├── img01.png
│   │   ├── img02.png
│   │   ├── img03.png
│   │   ├── img04.png
│   │   ├── img05.png
│   │   ├── img06.png
│   │   ├── img07.png
│   │   ├── img08.png
│   │   ├── img09.png
│   │   ├── img10.png
│   │   ├── img11.png
│   │   ├── img12.png
│   │   ├── img13.png
│   │   ├── img14.png
│   │   ├── img15.png
│   │   ├── inputbg.gif
│   │   ├── itabbg1.png
│   │   ├── itabbg.png
│   │   ├── leftico01.png
│   │   ├── leftico02.png
│   │   ├── leftico03.png
│   │   ├── leftico04.png
│   │   ├── leftico.png
│   │   ├── leftline.gif
│   │   ├── leftmenubg.gif
│   │   ├── lefttop.gif
│   │   ├── libg.png
│   │   ├── light.png
│   │   ├── line1.png
│   │   ├── line.gif
│   │   ├── list1.gif
│   │   ├── list2.png
│   │   ├── list.gif
│   │   ├── loginbg1.png
│   │   ├── loginbg2.png
│   │   ├── loginbg3.png
│   │   ├── logininfo.png
│   │   ├── loginlogo.png
│   │   ├── loginpassword.png
│   │   ├── loginsj.png
│   │   ├── loginuser.png
│   │   ├── logo.png
│   │   ├── msg.png
│   │   ├── navbg.png
│   │   ├── next.gif
│   │   ├── pre.gif
│   │   ├── px.gif
│   │   ├── righttop.gif
│   │   ├── rlist.gif
│   │   ├── search.png
│   │   ├── sj.png
│   │   ├── sun.png
│   │   ├── t01.png
│   │   ├── t02.png
│   │   ├── t03.png
│   │   ├── t04.png
│   │   ├── t05.png
│   │   ├── tbg.png
│   │   ├── tcbg.gif
│   │   ├── th.gif
│   │   ├── Thumbs.db
│   │   ├── ticon.png
│   │   ├── time.png
│   │   ├── toolbg.gif
│   │   ├── topbg.gif
│   │   ├── topleft.jpg
│   │   ├── topright.jpg
│   │   ├── ub1.png
│   │   ├── uew_icon_hover.png
│   │   ├── uew_icon.png
│   │   ├── ulist.png
│   │   ├── userbg.png
│   │   └── user.png
│   ├── index.jsp
│   ├── jiaoshi
│   │   ├── jiaoshiadd.jsp
│   │   ├── jiaoshidetail.jsp
│   │   ├── jiaoshilist.jsp
│   │   ├── jiaoshimodify.jsp
│   │   ├── modify.jsp
│   │   └── update.jsp
│   ├── js
│   │   ├── Calendar1.js
│   │   ├── cloud.js
│   │   ├── date.js
│   │   ├── date.js.bak
│   │   ├── format+zh_CN,default,corechart.I.js
│   │   ├── jquery-1.5.1.min.js
│   │   ├── jquery.ba-resize.min.js
│   │   ├── jquery.gvChart-1.0.1.min.js
│   │   ├── jquery.idTabs.min.js
│   │   ├── jquery.js
│   │   ├── jquery.pager.js
│   │   ├── jsapi.js
│   │   ├── PIE.htc
│   │   ├── popup.js
│   │   └── select-ui.min.js
│   ├── left.jsp
│   ├── logincheck.jsp
│   ├── login.jsp
│   ├── main.html
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── qt
│   │   ├── agonggao.jsp
│   │   ├── ashijuan.jsp
│   │   ├── axuexi.jsp
│   │   ├── bottom.jsp
│   │   ├── check.jsp
│   │   ├── css
│   │   │   ├── admin.css
│   │   │   ├── album.css
│   │   │   ├── all.css
│   │   │   ├── base.css
│   │   │   ├── calendar.css
│   │   │   ├── close0.png
│   │   │   ├── close.png
│   │   │   ├── css_body.css
│   │   │   ├── css.css
│   │   │   ├── css_menu.css
│   │   │   ├── css_menu_user.css
│   │   │   ├── css_top.css
│   │   │   ├── css_top_user.css
│   │   │   ├── date.js
│   │   │   ├── loading.gif
│   │   │   ├── style1.css
│   │   │   ├── style.css
│   │   │   ├── tinyTips.css
│   │   │   ├── titleBG0.png
│   │   │   ├── titleBG1.png
│   │   │   ├── titleBG.png
│   │   │   ├── wbox2.gif
│   │   │   ├── wbox.css
│   │   │   ├── wbox.gif
│   │   │   ├── wbox-min.css
│   │   │   ├── wbox.png
│   │   │   └── webmain.css
│   │   ├── ctcheck.jsp
│   │   ├── foot.jsp
│   │   ├── gonggao.jsp
│   │   ├── head.jsp
│   │   ├── images
│   │   │   ├── 01.gif
│   │   │   ├── 02.gif
│   │   │   ├── a1.png
│   │   │   ├── admin.css
│   │   │   ├── admin_p.gif
│   │   │   ├── adminsyteam.gif
│   │   │   ├── admin_tlogo.jpg
│   │   │   ├── arrowdown.gif
│   │   │   ├── arrow.gif
│   │   │   ├── banner.jpg
│   │   │   ├── banner - 副本 - 副本 - 副本.jpg
│   │   │   ├── base.js
│   │   │   ├── b_clean.gif
│   │   │   ├── bg.gif
│   │   │   ├── Bj_body.gif
│   │   │   ├── Bj_button2.gif
│   │   │   ├── Bj_button.gif
│   │   │   ├── Bj_copyright.gif
│   │   │   ├── Bj_footer.gif
│   │   │   ├── bj.gif
│   │   │   ├── Bj_h3.gif
│   │   │   ├── Bj_hb.gif
│   │   │   ├── Bj_header.gif
│   │   │   ├── Bj_left.gif
│   │   │   ├── Bj_li.gif
│   │   │   ├── Bj_LoginButton.gif
│   │   │   ├── Bj_Login.jpg1
│   │   │   ├── Bj_main_img.gif
│   │   │   ├── Bj_menu.gif
│   │   │   ├── Bj_titleTh.gif
│   │   │   ├── Bj_top.gif
│   │   │   ├── b_login.gif
│   │   │   ├── body_title_bg.gif
│   │   │   ├── body_title_left.gif
│   │   │   ├── body_title_right.gif
│   │   │   ├── bt_login.gif
│   │   │   ├── class_sclose.gif
│   │   │   ├── class_sopen.gif
│   │   │   ├── class_ssr.gif
│   │   │   ├── close2.gif
│   │   │   ├── close.gif
│   │   │   ├── color.png
│   │   │   ├── dede_biz_admin_bbg.jpg
│   │   │   ├── dede_biz_admin_blbg.jpg
│   │   │   ├── dede_biz_admin_brbg.jpg
│   │   │   ├── dede_biz_admin_lmbg.jpg
│   │   │   ├── dede_biz_admin_lmtr.jpg
│   │   │   ├── dede_biz_admin_mbg.jpg
│   │   │   ├── footer.gif
│   │   │   ├── frame.js
│   │   │   ├── frame-l.gif
│   │   │   ├── frame_on.gif
│   │   │   ├── frame-r.gif
│   │   │   ├── header_bg.jpg
│   │   │   ├── header_left.jpg
│   │   │   ├── header_right.jpg
│   │   │   ├── help.gif
│   │   │   ├── i_bottom_bg.gif
│   │   │   ├── i_bottom_left.gif
│   │   │   ├── i_bottom_right.gif
│   │   │   ├── ico_1.gif
│   │   │   ├── ico_2.gif
│   │   │   ├── ico_3.gif
│   │   │   ├── ico_4.gif
│   │   │   ├── ico_5.gif
│   │   │   ├── id.gif
│   │   │   ├── ileftbg.gif
│   │   │   ├── ileft.gif
│   │   │   ├── image_s.gif
│   │   │   ├── inputbut_bg.gif
│   │   │   ├── input_shadow.png
│   │   │   ├── irightbg.gif
│   │   │   ├── iright.gif
│   │   │   ├── i_top1.gif
│   │   │   ├── i_topbg2.gif
│   │   │   ├── kong.gif
│   │   │   ├── left_bg_top.gif
│   │   │   ├── login_13.png
│   │   │   ├── login_1.jpg
│   │   │   ├── login_2.jpg
│   │   │   ├── login_3.jpg
│   │   │   ├── login_4.jpg
│   │   │   ├── login_5.jpg
│   │   │   ├── login_6.gif
│   │   │   ├── login.gif
│   │   │   ├── login_input_bg.gif
│   │   │   ├── login_input_hr.gif
│   │   │   ├── login_submit.gif
│   │   │   ├── logo_01.gif
│   │   │   ├── logo.jpg
│   │   │   ├── logo_user.jpg
│   │   │   ├── main.js
│   │   │   ├── mb_bg.gif
│   │   │   ├── menu_bg.jpg
│   │   │   ├── menu_bt.jpg
│   │   │   ├── menu_icon.gif
│   │   │   ├── menulist.gif
│   │   │   ├── menunowbg.gif
│   │   │   ├── menu_title_bg.jpg
│   │   │   ├── m_foot.png
│   │   │   ├── mico_1.gif
│   │   │   ├── mico_l.gif
│   │   │   ├── more_1.gif
│   │   │   ├── m_tleft.png
│   │   │   ├── m_tmid.gif
│   │   │   ├── m_tright.png
│   │   │   ├── noimage.gif
│   │   │   ├── pass.gif
│   │   │   ├── pbg.gif
│   │   │   ├── Pic_arrow.gif
│   │   │   ├── Pic_button.gif
│   │   │   ├── Pic_helpIcon.gif
│   │   │   ├── Pic_homeIcon.gif
│   │   │   ├── Pic_iconAdmin.gif
│   │   │   ├── Pic_iconHelp.gif
│   │   │   ├── Pic_iconHome.gif
│   │   │   ├── Pic_iconManage.gif
│   │   │   ├── Pic_iconQuit.gif
│   │   │   ├── Pic_iconUser.gif
│   │   │   ├── Pic_left_line.gif
│   │   │   ├── Pic_quitIcon.gif
│   │   │   ├── Pic_serchBtn.gif
│   │   │   ├── Pic_shrink.gif
│   │   │   ├── Pic_title_icon.gif
│   │   │   ├── Pic_top_img.gif
│   │   │   ├── Pic_top_img - 副本.gif
│   │   │   ├── qqstyle1.jpg
│   │   │   ├── qqstyle2.jpg
│   │   │   ├── rcbox_title.gif
│   │   │   ├── shadow_bg.jpg
│   │   │   ├── slide1.jpg
│   │   │   ├── smallbook.jpg
│   │   │   ├── style1.css
│   │   │   ├── style.css
│   │   │   ├── tcstyle1.jpg
│   │   │   ├── Thumbs.db
│   │   │   ├── tinyTip-bottom.png
│   │   │   ├── tinyTip-bq.png
│   │   │   ├── tinyTip-content.png
│   │   │   ├── tinyTip.png
│   │   │   ├── tinyTip-top.png
│   │   │   ├── title_bg1.jpg
│   │   │   ├── title_bg2.jpg
│   │   │   ├── toolbar_del.gif
│   │   │   ├── toolbar_no.gif
│   │   │   ├── toolbar_ok.gif
│   │   │   ├── top_back.jpg
│   │   │   ├── topBar_bg.gif
│   │   │   ├── top_bg.gif
│   │   │   ├── top_bg_hr.jpg
│   │   │   ├── top_buttom.jpg
│   │   │   ├── top_nav_bg.jpg
│   │   │   ├── top_nav_left.jpg
│   │   │   ├── top_nav_link2.gif
│   │   │   ├── top_nav_link.jpg
│   │   │   ├── top_nav_mid.jpg
│   │   │   ├── top_nav_on.gif
│   │   │   ├── top_nav_right.jpg
│   │   │   ├── top.swf
│   │   │   ├── tpbg.gif
│   │   │   ├── view.gif
│   │   │   ├── voteView.gif
│   │   │   ├── x.gif
│   │   │   ├── ym.gif
│   │   │   ├── zhanhui.png
│   │   │   ├── 复件 top_nav_bg.jpg
│   │   │   └── 复件 top_nav_on.gif
│   │   ├── js
│   │   │   ├── calendar.js
│   │   │   ├── date.js
│   │   │   ├── getdate
│   │   │   │   ├── calendar.js
│   │   │   │   ├── config.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh-tw.js
│   │   │   │   ├── My97DatePicker.htm
│   │   │   │   ├── skin
│   │   │   │   │   ├── datePicker.gif
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── datepicker.css
│   │   │   │   │   │   └── img.gif
│   │   │   │   │   ├── WdatePicker.css
│   │   │   │   │   └── whyGreen
│   │   │   │   │   ├── bg.jpg
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   └── WdatePicker.js
│   │   │   ├── iColorPicker.js
│   │   │   ├── jquery.min.js
│   │   │   ├── jquery.tinyTips.js
│   │   │   ├── menu.js
│   │   │   └── swfobject.js
│   │   ├── leftlogincheck.jsp
│   │   ├── lianxi.jsp
│   │   ├── mychengji.jsp
│   │   ├── onedati.jsp
│   │   ├── out.jsp
│   │   ├── quit.jsp
│   │   ├── right.jsp
│   │   ├── shijuancheck.jsp
│   │   ├── shijuan.jsp
│   │   ├── shouye.jsp
│   │   ├── update.jsp
│   │   ├── yonghu.jsp
│   │   └── zhuce.jsp
│   ├── shijuan
│   │   ├── shijuanadd.jsp
│   │   ├── shijuandetail.jsp
│   │   ├── shijuanlist.jsp
│   │   └── shijuanmodify.jsp
│   ├── shiti
│   │   ├── shitiadd.jsp
│   │   ├── shitidetail.jsp
│   │   ├── shitilist.jsp
│   │   └── shitimodify.jsp
│   ├── top.jsp
│   ├── WEB-INF
│   │   ├── classes
│   │   │   ├── com
│   │   │   │   ├── action
│   │   │   │   │   ├── chengjiAction.class
│   │   │   │   │   ├── glyAction.class
│   │   │   │   │   ├── gonggaoAction.class
│   │   │   │   │   ├── huidaAction.class
│   │   │   │   │   ├── jiaoshiAction.class
│   │   │   │   │   ├── shijuanAction.class
│   │   │   │   │   ├── shitiAction.class
│   │   │   │   │   ├── xueshengAction.class
│   │   │   │   │   ├── zhangjieAction.class
│   │   │   │   │   └── zujuanAction.class
│   │   │   │   ├── bean
│   │   │   │   │   ├── chengji.class
│   │   │   │   │   ├── Course.class
│   │   │   │   │   ├── gly.class
│   │   │   │   │   ├── gonggao.class
│   │   │   │   │   ├── huida.class
│   │   │   │   │   ├── jiaoshi.class
│   │   │   │   │   ├── shijuan.class
│   │   │   │   │   ├── shiti.class
│   │   │   │   │   ├── xuesheng.class
│   │   │   │   │   ├── zhangjie.class
│   │   │   │   │   └── zujuan.class
│   │   │   │   ├── dao
│   │   │   │   │   ├── chengjiDao.class
│   │   │   │   │   ├── CourseDao.class
│   │   │   │   │   ├── glyDao.class
│   │   │   │   │   ├── gonggaoDao.class
│   │   │   │   │   ├── huidaDao.class
│   │   │   │   │   ├── jiaoshiDao.class
│   │   │   │   │   ├── shijuanDao.class
│   │   │   │   │   ├── shitiDao.class
│   │   │   │   │   ├── xueshengDao.class
│   │   │   │   │   ├── zhangjieDao.class
│   │   │   │   │   └── zujuanDao.class
│   │   │   │   └── util
│   │   │   │   ├── DBO.class
│   │   │   │   ├── MyFileUpload.class
│   │   │   │   └── StaticMethod.class
│   │   │   └── struts.xml
│   │   ├── lib
│   │   │   ├── commons-fileupload-1.2.1.jar
│   │   │   ├── commons-io-1.3.2.jar
│   │   │   ├── freemarker-2.3.16.jar
│   │   │   ├── javassist-3.7.ga.jar
│   │   │   ├── jstl-1.2.jar
│   │   │   ├── mysql-connector-java-5.1.6-bin.jar
│   │   │   ├── ognl-3.0.jar
│   │   │   ├── struts2-core-2.2.1.jar
│   │   │   ├── struts2-json-plugin-2.2.1.jar
│   │   │   └── xwork-core-2.2.1.jar
│   │   ├── web.xml
│   │   └── xml.txt
│   ├── xuesheng
│   │   ├── xueshengadd.jsp
│   │   ├── xueshengdetail.jsp
│   │   ├── xueshenglist.jsp
│   │   └── xueshengmodify.jsp
│   ├── zhangjie
│   │   ├── zhangjieadd.jsp
│   │   ├── zhangjiedetail.jsp
│   │   ├── zhangjielist.jsp
│   │   └── zhangjiemodify.jsp
│   └── zujuan
│   ├── do.jsp
│   ├── suijiadd.jsp
│   ├── zujuanadd.jsp
│   ├── zujuandetail.jsp
│   ├── zujuanlist.jsp
│   └── zujuanmodify.jsp
├── zd.txt
└── 使用说明书.txt

43 directories, 577 files

标签:

实例下载地址

JSP在线考试系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警