Jsp+Servlet實(shí)現(xiàn)文件上傳下載 文件上傳(一)

文件上傳和下載功能是java web必備技能,很實(shí)用。

本文使用的是apache下的著名的文件上傳組件
org.apache.commons.fileupload 實(shí)現(xiàn)

下面結(jié)合最近看到的一些資料以及自己的嘗試,先寫(xiě)第一篇文件上傳。后續(xù)會(huì)逐步實(shí)現(xiàn)下載,展示文件列表,上傳信息持久化等。

廢話(huà)少說(shuō),直接上代碼

第一步、引用jar包,設(shè)置上傳目錄

commons-fileupload-1.3.1.jar
commons-io-2.4.jar

上傳目錄:web-inf/tempfiles和web-inf/uploadfiles

第二步、編寫(xiě)jsp頁(yè)面

<%@ page contenttype="text/html;charset=utf-8" language="java" %> 
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 
<html> 
<head> 
 <title>文件上傳測(cè)試</title> 
</head> 
<body> 
<form method="post" enctype="multipart/form-data" action="<%=request.getcontextpath()%>/uploadservlet"> 
 文件: <input type="file" name="upfile"><br/> 
 <br/> 
 <input type="submit" value="上傳"> 
</form> 
<c:if test="${not empty errormessage}"> 
 <input type="text" id="errormessage" value="${errormessage}" style="color:red;" disabled="disabled"> 
</c:if> 
</body> 
</html> 

第三步、編寫(xiě)servlet,處理文件上傳的核心

package servlet; 
 
import org.apache.commons.fileupload.fileitem; 
import org.apache.commons.fileupload.fileuploadbase; 
import org.apache.commons.fileupload.fileuploadexception; 
import org.apache.commons.fileupload.progresslistener; 
import org.apache.commons.fileupload.disk.diskfileitemfactory; 
import org.apache.commons.fileupload.servlet.servletfileupload; 
 
import javax.servlet.servletexception; 
import javax.servlet.annotation.webservlet; 
import javax.servlet.http.httpservlet; 
import javax.servlet.http.httpservletrequest; 
import javax.servlet.http.httpservletresponse; 
import java.io.file; 
import java.io.fileoutputstream; 
import java.io.ioexception; 
import java.io.inputstream; 
import java.util.calendar; 
import java.util.iterator; 
import java.util.list; 
import java.util.uuid; 
 
/** 
 * 處理文件上傳 
 * 
 * @author xusucheng 
 * @create 2017-12-27 
 **/ 
@webservlet("/uploadservlet") 
public class uploadservlet extends httpservlet { 
 @override 
 protected void doget(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { 
 //設(shè)置文件上傳基本路徑 
 string savepath = this.getservletcontext().getrealpath("/web-inf/uploadfiles"); 
 //設(shè)置臨時(shí)文件路徑 
 string temppath = this.getservletcontext().getrealpath("/web-inf/tempfiles"); 
 file tempfile = new file(temppath); 
 if (!tempfile.exists()) { 
 tempfile.mkdir(); 
 } 
 
 //定義異常消息 
 string errormessage = ""; 
 //創(chuàng)建file items工廠(chǎng) 
 diskfileitemfactory factory = new diskfileitemfactory(); 
 //設(shè)置緩沖區(qū)大小 
 factory.setsizethreshold(1024 * 100); 
 //設(shè)置臨時(shí)文件路徑 
 factory.setrepository(tempfile); 
 //創(chuàng)建文件上傳處理器 
 servletfileupload upload = new servletfileupload(factory); 
 //監(jiān)聽(tīng)文件上傳進(jìn)度 
 progresslistener progresslistener = new progresslistener() { 
 public void update(long pbytesread, long pcontentlength, int pitems) { 
 system.out.println("正在讀取文件: " + pitems); 
 if (pcontentlength == -1) { 
  system.out.println("已讀取: " + pbytesread + " 剩余0"); 
 } else { 
  system.out.println("文件總大?。? + pcontentlength + " 已讀?。? + pbytesread); 
 } 
 } 
 }; 
 upload.setprogresslistener(progresslistener); 
 
 //解決上傳文件名的中文亂碼 
 upload.setheaderencoding("utf-8"); 
 //判斷提交上來(lái)的數(shù)據(jù)是否是上傳表單的數(shù)據(jù) 
 if (!servletfileupload.ismultipartcontent(request)) { 
 //按照傳統(tǒng)方式獲取數(shù)據(jù) 
 return; 
 } 
 
 //設(shè)置上傳單個(gè)文件的大小的最大值,目前是設(shè)置為1024*1024字節(jié),也就是1mb 
 upload.setfilesizemax(1024 * 1024); 
 //設(shè)置上傳文件總量的最大值,最大值=同時(shí)上傳的多個(gè)文件的大小的最大值的和,目前設(shè)置為10mb 
 upload.setsizemax(1024 * 1024 * 10); 
 
 try { 
 //使用servletfileupload解析器解析上傳數(shù)據(jù),解析結(jié)果返回的是一個(gè)list<fileitem>集合,每一個(gè)fileitem對(duì)應(yīng)一個(gè)form表單的輸入項(xiàng) 
 list<fileitem> items = upload.parserequest(request); 
 iterator<fileitem> iterator = items.iterator(); 
 while (iterator.hasnext()) { 
 fileitem item = iterator.next(); 
 
 //判斷jsp提交過(guò)來(lái)的是不是文件 
 if (item.isformfield()) { 
  errormessage = "請(qǐng)?zhí)峤晃募?; 
  break; 
 } else { 
  //文件名 
  string filename = item.getname(); 
  if (filename == null || filename.trim() == "") { 
  system.out.println("文件名為空!"); 
  } 
  //處理不同瀏覽器提交的文件名帶路徑問(wèn)題 
  filename = filename.substring(filename.lastindexof("\\") + 1); 
  //文件擴(kuò)展名 
  string fileextension = filename.substring(filename.lastindexof(".") + 1); 
  //判斷擴(kuò)展名是否合法 
  if (!validextension(fileextension)) { 
  errormessage = "上傳文件非法!"; 
  item.delete(); 
  break; 
  } 
  //獲得文件輸入流 
  inputstream in = item.getinputstream(); 
  //得到保存文件的名稱(chēng) 
  string savefilename = createfilename(filename); 
  //得到文件保存路徑 
  string realfilepath = createrealfilepath(savepath, savefilename); 
  //創(chuàng)建文件輸出流 
  fileoutputstream out = new fileoutputstream(realfilepath); 
  //創(chuàng)建緩沖區(qū) 
  byte buffer[] = new byte[1024]; 
  int len = 0; 
  while ((len = in.read(buffer)) > 0) { 
  //寫(xiě)文件 
  out.write(buffer, 0, len); 
  } 
  //關(guān)閉輸入流 
  in.close(); 
  //關(guān)閉輸出流 
  out.close(); 
  //刪除臨時(shí)文件 todo 
  item.delete(); 
  //將上傳文件信息保存到附件表中 todo 
 } 
 
 } 
 
 } catch (fileuploadbase.filesizelimitexceededexception e) { 
 e.printstacktrace(); 
 request.setattribute("errormessage", "單個(gè)文件超出最大值?。?!"); 
 request.getrequestdispatcher("pages/upload/upload.jsp").forward(request, response); 
 return; 
 } catch (fileuploadbase.sizelimitexceededexception e) { 
 e.printstacktrace(); 
 request.setattribute("errormessage", "上傳文件的總的大小超出限制的最大值?。?!"); 
 request.getrequestdispatcher("pages/upload/upload.jsp").forward(request, response); 
 return; 
 } catch (fileuploadexception e) { 
 e.printstacktrace(); 
 request.setattribute("errormessage", "文件上傳失敗?。?!"); 
 request.getrequestdispatcher("pages/upload/upload.jsp").forward(request, response); 
 return; 
 } 
 
 request.setattribute("errormessage", errormessage); 
 request.getrequestdispatcher("pages/upload/upload.jsp").forward(request, response); 
 
 
 } 
 
 @override 
 protected void dopost(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { 
 doget(request, response); 
 } 
 
 private boolean validextension(string fileextension) { 
 string[] exts = {"jpg", "txt", "doc", "pdf"}; 
 for (int i = 0; i < exts.length; i++) { 
 if (fileextension.equals(exts[i])) { 
 return true; 
 } 
 
 } 
 
 return false; 
 } 
 
 private string createfilename(string filename) { 
 return uuid.randomuuid().tostring() + "_" + filename; 
 } 
 
 /** 
 * 根據(jù)基本路徑和文件名稱(chēng)生成真實(shí)文件路徑,基本路徑\\年\\月\\filename 
 * 
 * @param basepath 
 * @param filename 
 * @return 
 */ 
 private string createrealfilepath(string basepath, string filename) { 
 calendar today = calendar.getinstance(); 
 string year = string.valueof(today.get(calendar.year)); 
 string month = string.valueof(today.get(calendar.month) + 1); 
 
 
 string uppath = basepath + file.separator + year + file.separator + month + file.separator; 
 file uploadfolder = new file(uppath); 
 if (!uploadfolder.exists()) { 
 uploadfolder.mkdirs(); 
 } 
 
 string realfilepath = uppath + filename; 
 
 return realfilepath; 
 } 
} 

第四步、測(cè)試

http://localhost:8080/helloweb/pages/upload/upload.jsp

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频