黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

JavaServlet的文件上傳和下載實現(xiàn)方法

先分析一下上傳文件的流程

1-先通過前段頁面中的選擇文件選擇要上傳的圖片

index.jsp

 <%@ page language="java" import="java.util.*" pageencoding="utf-8"
 contenttype="text/html; charset=utf-8"%>

  my jsp 'index.jsp' starting page                     
  
  
  
  
        
  下載  

2-點擊提交按鈕,通過ajax的文件上傳訪問服務(wù)器端

common.js  

var path = (function() {
 //獲取當(dāng)前網(wǎng)址
 var curwwwpath = window.document.location.href;
 //獲取主機地址之后的目錄
 var pathname = window.document.location.pathname;
 var pos = curwwwpath.indexof(pathname);
 //獲取主機地址
 var localhostpath = curwwwpath.substring(0, pos);
 //獲取帶"/"的項目名
 var projectname = pathname.substring(0, pathname.substr(1).indexof('/') + 1);
 return {
   curwwwpath: curwwwpath,
   pathname: pathname,
   localhostpath: localhostpath,
   projectname: projectname,
   //部署路徑
   deploypath: localhostpath + projectname
  };
})();
// 文件下載
$("a[id=download]").click(function(){
 window.location.href=path.deploypath+"/filedown";
});
// 文件上傳
$("input[id=upload]").click(function() {
 $.ajaxfileupload( {
  url : path.deploypath + "/fileup", // 處理頁面的絕對路徑
  fileelementid : "inputimage", //file空間的id屬性
  datatype : "json",
  success : function(data) {
   alert("上傳成功");
  }
 });
});

3-服務(wù)器端響應(yīng)保存或者下載

保存上傳文件的fileupload.java

import java.io.file;
import java.io.ioexception;
import java.io.printwriter;
import java.util.arraylist;
import java.util.list;
import java.util.uuid;
import javax.servlet.servletexception;
import javax.servlet.http.httpservlet;
import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpservletresponse;
import net.sf.json.jsonarray;
import org.apache.commons.fileupload.fileitem;
import org.apache.commons.fileupload.fileuploadexception;
import org.apache.commons.fileupload.disk.diskfileitemfactory;
import org.apache.commons.fileupload.servlet.servletfileupload;
import com.stu.util.httputil;
/**
 * 文件名稱: com.stu.fileupload.fileupload.java

 * 初始作者: administrator

 * 創(chuàng)建日期: 2018-1-31

 * 功能說明: 文件上傳 

 * =================================================

 * 修改記錄:

 * 修改作者 日期 修改內(nèi)容

 * ================================================

 * copyright (c) 2010-2011 .all rights reserved.

 */
public class fileupload extends httpservlet {
 private static final long serialversionuid = 1l;
 @override
 protected void service(httpservletrequest req, httpservletresponse res)
 throws servletexception, ioexception {
  // 獲取到當(dāng)前服務(wù)器所在的路徑
  string serverpath = req.getsession().getservletcontext().getrealpath("/");
  // 設(shè)置保存上傳文件的路徑
  string savedirpath = serverpath + "img";
  file savedirpathfileobj = new file(savedirpath);
  // 如果當(dāng)用來存放文件的目錄不存在時,要創(chuàng)建該目錄
  if (!savedirpathfileobj.exists()) {
   savedirpathfileobj.mkdirs();
  }
  // 創(chuàng)建一個解析器工廠
  diskfileitemfactory factory = new diskfileitemfactory();
  // 設(shè)置工廠的緩存區(qū)大小
  factory.setsizethreshold(5 * 1024);
  // 文件上傳的解析器(文件上傳對象)
  servletfileupload upload = new servletfileupload(factory);
  // 設(shè)置上傳文件的最大值
  upload.setsizemax(3 * 1024 * 1024);
  // 設(shè)置編碼格式
  upload.setheaderencoding("utf-8");
  try {
   // 上傳以后的文件名
   list uploadfilenames = new arraylist();
   list fileitems = upload.parserequest(req);
   system.out.println(fileitems);
   for (fileitem file : fileitems) {
    // 新的文件名
    string savefilename = uuid.randomuuid().tostring().replace("-", "");
    // 文件的后綴
    string oldfilename = new string(file.getname().getbytes(),
    "utf-8");
    system.out.println("oldfilename" + oldfilename);
    string filetype = oldfilename.substring(oldfilename.lastindexof("."));
    // 新的文件路徑
    string savefilepath = savedirpath + file.separator
    + savefilename + filetype;
    uploadfilenames.add(savefilename + filetype);
    // 保存上傳的文件
    file.write(new file(savefilepath));
   }
   system.out.println(uploadfilenames);
   httputil.setattribute(req, "urls", uploadfilenames);
   res.setcontenttype("application/json;charset=utf-8");
   printwriter pw = res.getwriter();
   pw.print(jsonarray.fromobject(uploadfilenames));
  } catch (fileuploadexception e) {
   e.printstacktrace();
  } catch (exception e) {
   e.printstacktrace();
  }
 }
}

下載文件的filedownload.java

import java.io.file;
import java.io.ioexception;
import java.io.printwriter;
import java.util.arraylist;
import java.util.list;
import java.util.uuid;
import javax.servlet.servletexception;
import javax.servlet.http.httpservlet;
import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpservletresponse;
import net.sf.json.jsonarray;
import org.apache.commons.fileupload.fileitem;
import org.apache.commons.fileupload.fileuploadexception;
import org.apache.commons.fileupload.disk.diskfileitemfactory;
import org.apache.commons.fileupload.servlet.servletfileupload;
import com.stu.util.httputil;
/**
 * 文件名稱: com.stu.fileupload.fileupload.java

 * 初始作者: administrator

 * 創(chuàng)建日期: 2018-1-31

 * 功能說明: 文件上傳 

 * =================================================

 * 修改記錄:

 * 修改作者 日期 修改內(nèi)容

 * ================================================

 * copyright (c) 2010-2011 .all rights reserved.

 */
public class fileupload extends httpservlet {
 private static final long serialversionuid = 1l;
 @override
 protected void service(httpservletrequest req, httpservletresponse res)
 throws servletexception, ioexception {
  // 獲取到當(dāng)前服務(wù)器所在的路徑
  string serverpath = req.getsession().getservletcontext().getrealpath("/");
  // 設(shè)置保存上傳文件的路徑
  string savedirpath = serverpath + "img";
  file savedirpathfileobj = new file(savedirpath);
  // 如果當(dāng)用來存放文件的目錄不存在時,要創(chuàng)建該目錄
  if (!savedirpathfileobj.exists()) {
   savedirpathfileobj.mkdirs();
  }
  // 創(chuàng)建一個解析器工廠
  diskfileitemfactory factory = new diskfileitemfactory();
  // 設(shè)置工廠的緩存區(qū)大小
  factory.setsizethreshold(5 * 1024);
  // 文件上傳的解析器(文件上傳對象)
  servletfileupload upload = new servletfileupload(factory);
  // 設(shè)置上傳文件的最大值
  upload.setsizemax(3 * 1024 * 1024);
  // 設(shè)置編碼格式
  upload.setheaderencoding("utf-8");
  try {
   // 上傳以后的文件名
   list uploadfilenames = new arraylist();
   list fileitems = upload.parserequest(req);
   system.out.println(fileitems);
   for (fileitem file : fileitems) {
    // 新的文件名
    string savefilename = uuid.randomuuid().tostring().replace("-", "");
    // 文件的后綴
    string oldfilename = new string(file.getname().getbytes(),
    "utf-8");
    system.out.println("oldfilename" + oldfilename);
    string filetype = oldfilename.substring(oldfilename.lastindexof("."));
    // 新的文件路徑
    string savefilepath = savedirpath + file.separator
    + savefilename + filetype;
    uploadfilenames.add(savefilename + filetype);
    // 保存上傳的文件
    file.write(new file(savefilepath));
   }
   system.out.println(uploadfilenames);
   httputil.setattribute(req, "urls", uploadfilenames);
   res.setcontenttype("application/json;charset=utf-8");
   printwriter pw = res.getwriter();
   pw.print(jsonarray.fromobject(uploadfilenames));
  } catch (fileuploadexception e) {
   e.printstacktrace();
  } catch (exception e) {
   e.printstacktrace();
  }
 }
}

這里面用到了一個httputil類,代碼如下:

import javax.servlet.filterconfig;
import javax.servlet.servletconfig;
import javax.servlet.servletcontext;
import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpsession;
/**
 * 文件名稱_com.niit.model2.util.httputil.java

 * 初始作逯?administrator

 * 創(chuàng)建日期_2018-1-23

 * 功能說明_這里用一句話描述這個類的作用--此句話需刪除 

 * =================================================

 * 修改記錄_br/>
 * 修改作迠日期 修改內(nèi)容

 * ================================================

 * copyright (c) 2010-2011 .all rights reserved.

 */
public class httputil {
  private httputil() {
  }
  /**
   * 方法描述: [用于向不同的作用域存放屬性]

   * 初始作迺 administrator

   * 創(chuàng)建日期: 2018-1-23-上午11:24:45

   * 弿?版本: 2.0.0

   * =================================================

   * 修改記錄_br/>
   * 修改作迠日期 修改內(nèi)容

   * ================================================

   * void
   */
  public static void setattribute(object scopeobj, string name, object value) {
    if (scopeobj instanceof httpservletrequest) {
      ((httpservletrequest) scopeobj).setattribute(name, value);
    }
    if (scopeobj instanceof httpsession) {
      ((httpsession) scopeobj).setattribute(name, value);
    }
    if (scopeobj instanceof servletcontext) {
      ((servletcontext) scopeobj).setattribute(name, value);
    }
  }
  /**
   * 方法描述: [獲取作用域中指定名稱的屬性思

   * 初始作迺 administrator

   * 創(chuàng)建日期: 2018-1-23-上午11:29:17

   * 弿?版本: 2.0.0

   * =================================================

   * 修改記錄_br/>
   * 修改作迠日期 修改內(nèi)容

   * ================================================

   * 
   * @param scopeobj
   * @param name
   * @return
   *     object
   */
  public static object getattribute(object scopeobj, string name) {
    if (scopeobj instanceof httpservletrequest) {
      return ((httpservletrequest) scopeobj).getattribute(name);
    }
    if (scopeobj instanceof httpsession) {
      return ((httpsession) scopeobj).getattribute(name);
    }
    if (scopeobj instanceof servletcontext) {
      return ((servletcontext) scopeobj).getattribute(name);
    }
    return null;
  }
  /**
   * 方法描述: [獲取上下文對象的方法]

   * 初始作迺 administrator

   * 創(chuàng)建日期: 2018-1-23-上午11:31:26

   * 弿?版本: 2.0.0

   * =================================================

   * 修改記錄_br/>
   * 修改作迠日期 修改內(nèi)容

   * ================================================

   * 
   * @return
   *     servletcontext
   */
  public static servletcontext getservletcontext(object sourceobj) {
    if (sourceobj instanceof httpservletrequest) {
      return ((httpservletrequest) sourceobj).getsession().getservletcontext();
    }
    if (sourceobj instanceof servletconfig) {
      return ((servletconfig) sourceobj).getservletcontext();
    }
    if (sourceobj instanceof filterconfig) {
      return ((filterconfig) sourceobj).getservletcontext();
    }
    return null;
  }
  /**
   * 方法描述: [獲取項目的實際路徑]

   * 初始作迺 administrator

   * 創(chuàng)建日期: 2018-1-23-上午11:45:47

   * 弿?版本: 2.0.0

   * =================================================

   * 修改記錄_br/>
   * 修改作迠日期 修改內(nèi)容

   * ================================================

   * 
   * @param req
   * @return
   *     string
   */
  public static string getcontextpath(httpservletrequest req) {
    return req.getcontextpath();
  }
}

當(dāng)然,代碼編輯好了也不要忘了在 webroot/web-inf/web.xml 中添加新建的servlet,就是剛剛的兩個java文件啦

        index.jsp      
       fileupload     com.stu.fileupload.fileupload           fileupload     /fileup      
       filedownload     com.stu.fileupload.filedownload           filedownload     /filedown    

這樣的話就可以運行啦。

tip: 不要忘記相關(guān)的jar包和 js 包哦

在 webroot / web-inf / lib 下,有 commons-fileupload.jar 和 commons-io.jar ,另外 json-lib-x.x.x-jdkxx.jar 包是用來把上傳的返回數(shù)據(jù)修改為json格式的

在 webroot / js 下,導(dǎo)入 jquery.js , common.js , ajaxfileupload.js

相關(guān)文章