• 大小: 8.25MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-03
  • 语言: Java
  • 标签: 毕设  毕业设计  jsp  

资源简介

基于 jsp 的 在线学习系统 ( 毕业设计 ) 【花钱买的呀……】

资源截图

代码片段和文件信息

import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import com.jspsmart.upload.*;

public class servletUpload extends HttpServlet {

private ServletConfig config;
/**
* Init the servlet
*/
final public void init(ServletConfig config) throws ServletException {
this.config = config;
}

final public ServletConfig getServletConfig() {
return config;
}
/**
* Handles GET requests
*/
public void doGet(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {

PrintWriter out = response.getWriter();
out.println(““);
out.println(““);
out.println(“

jspSmartUpload : Servlet Sample

“);
out.println(“

“);
out.println(“The method of the HTML form must be POST.“);
out.println(““);
out.println(““);
}

/**
* Handles POST requests
*/
protected void doPost(HttpServletRequest request HttpServletResponse response) throws ServletException IOException {

PrintWriter out = response.getWriter();
out.println(““);
out.println(““);
out.println(“

jspSmartUpload : Servlet Sample

“);
out.println(“
“);

// Variables
int count=0;
SmartUpload mySmartUpload = new SmartUpload();

try {
// Initialization
mySmartUpload.initialize(configrequestresponse);

// Upload
mySmartUpload.upload();

// Save the file with the original name
// in a virtual path of the web server
count = mySmartUpload.save(mySmartUpload.getRequest().getParameter(“PATH“));

// Display the result
out.println(count + “ file uploaded.“);

} catch (Exception e){
out.println(“Unable to upload the file.
“);
out.println(“Error : “ + e.toString());
}

out.println(““);
out.println(““);
          }
/**
* Destroy the servlet
*/
public void  destroy () {
}



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

     文件       2546  2005-06-13 13:13  JSP042在线学习系统\源码\A.jsp

     文件       8602  2005-06-13 21:12  JSP042在线学习系统\源码\Bcol.jsp

     文件       1246  2005-06-04 13:23  JSP042在线学习系统\源码\C.jsp

     文件       6893  2005-06-11 18:03  JSP042在线学习系统\源码\Ccol.jsp

     文件       2200  2005-06-05 01:24  JSP042在线学习系统\源码\check.jsp

     文件        672  2005-04-25 11:17  JSP042在线学习系统\源码\content.jsp

     文件       3728  2005-06-11 17:14  JSP042在线学习系统\源码\course.jsp

     文件       4392  2005-04-25 05:22  JSP042在线学习系统\源码\course.txt

     文件       1702  2005-06-11 17:14  JSP042在线学习系统\源码\course1.jsp

     文件       1702  2005-06-11 17:14  JSP042在线学习系统\源码\course2.jsp

     文件       4517  2005-04-30 06:12  JSP042在线学习系统\源码\course7.jsp

     文件       1953  2005-04-22 05:03  JSP042在线学习系统\源码\dayi.jsp

     文件          0  2005-04-29 12:17  JSP042在线学习系统\源码\denglu.jsp

     文件       6027  2003-12-18 16:14  JSP042在线学习系统\源码\documentation\download.html

     文件       2764  2003-12-18 00:30  JSP042在线学习系统\源码\documentation\image\demeng.gif

     文件       1256  2003-07-12 10:35  JSP042在线学习系统\源码\documentation\image\example_title.gif

     文件       1263  2003-07-12 10:34  JSP042在线学习系统\源码\documentation\image\interface_title.gif

     文件       1277  2003-07-12 09:38  JSP042在线学习系统\源码\documentation\image\menu_1.gif

     文件       1262  2003-07-12 09:38  JSP042在线学习系统\源码\documentation\image\menu_2.gif

     文件       1338  2003-07-12 09:39  JSP042在线学习系统\源码\documentation\image\menu_3.gif

     文件       1191  2003-12-18 12:06  JSP042在线学习系统\源码\documentation\image\menu_4.gif

     文件       1022  2003-12-18 15:36  JSP042在线学习系统\源码\documentation\image\menu_5.gif

     文件         49  2003-12-18 00:11  JSP042在线学习系统\源码\documentation\image\menu_bottom.gif

     文件         58  2003-12-18 00:02  JSP042在线学习系统\源码\documentation\image\menu_head.gif

     文件        292  2003-12-17 23:51  JSP042在线学习系统\源码\documentation\image\menu_top.gif

     文件      10099  2003-12-18 00:08  JSP042在线学习系统\源码\documentation\image\pic.gif

     文件         43  2003-07-12 09:41  JSP042在线学习系统\源码\documentation\image\right_bg.gif

     文件       1297  2003-07-12 10:33  JSP042在线学习系统\源码\documentation\image\setup_title.gif

    ..A.SH.     19456  2009-06-01 19:58  JSP042在线学习系统\源码\documentation\image\Thumbs.db

     文件       7833  2003-07-12 09:37  JSP042在线学习系统\源码\documentation\image\title.gif

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

评论

共有 条评论