1、Servlet實現文件上傳,須要添加第三方提供的jar包:html
二:java
文件上傳的表單提交方式必須是POST方式,apache
編碼類型:enctype="multipart/form-data",默認是 application/x-www-form-urlencoded數組
好比:<form action="FileUpLoad" enctype="multipart/form-data" method="post">緩存
3、舉例:app
1.fileupload.jspjsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> post
<% ui
String path = request.getContextPath(); 編碼
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'fileupload.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<body>
<!-- enctype 默認是 application/x-www-form-urlencoded -->
<form action="FileUpLoad" enctype="multipart/form-data" method="post" >
用戶名:<input type="text" name="usename"> <br/>
上傳文件:<input type="file" name="file1"><br/>
上傳文件: <input type="file" name="file2"><br/>
<input type="submit" value="提交"/>
</form>
</body>
</html>
2.實際處理文件上傳的 FileUpLoad.java
[java] view plaincopy
package com.servlet.fileupload;
import java.io.File;
import java.io.*;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
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;
/**
*
* @author Administrator
* 文件上傳
* 具體步驟:
* 1)得到磁盤文件條目工廠 DiskFileItemFactory 要導包
* 2) 利用 request 獲取 真實路徑 ,供臨時文件存儲,和 最終文件存儲 ,這兩個存儲位置可不一樣,也可相同
* 3)對 DiskFileItemFactory 對象設置一些 屬性
* 4)高水平的API文件上傳處理 ServletFileUpload upload = new ServletFileUpload(factory);
* 目的是調用 parseRequest(request)方法 得到 FileItem 集合list ,
* 5)在 FileItem 對象中 獲取信息, 遍歷, 判斷 表單提交過來的信息 是不是 普通文本信息 另作處理
* 6)
* 第一種. 用第三方 提供的 item.write( new File(path,filename) ); 直接寫到磁盤上
* 第二種. 手動處理
*/
public class FileUpLoad extends HttpServlet {
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setCharacterEncoding("utf-8"); //設置編碼
//得到磁盤文件條目工廠
DiskFileItemFactory factory = new DiskFileItemFactory();
//獲取文件須要上傳到的路徑
String path = request.getRealPath("/upload");
//若是沒如下兩行設置的話,上傳大的 文件 會佔用 不少內存,
//設置暫時存放的 存儲室 , 這個存儲室,能夠和 最終存儲文件 的目錄不一樣
/**
* 原理 它是先存到 暫時存儲室,而後在真正寫到 對應目錄的硬盤上,
* 按理來講 當上傳一個文件時,實際上是上傳了兩份,第一個是以 .tem 格式的
* 而後再將其真正寫到 對應目錄的硬盤上
*/
factory.setRepository(new File(path));
//設置 緩存的大小,當上傳文件的容量超過該緩存時,直接放到 暫時存儲室
factory.setSizeThreshold(1024*1024) ;
//高水平的API文件上傳處理
ServletFileUpload upload = new ServletFileUpload(factory);
try {
//能夠上傳多個文件
List<FileItem> list = (List<FileItem>)upload.parseRequest(request);
for(FileItem item : list)
{
//獲取表單的屬性名字
String name = item.getFieldName(); //例如:name="usename"
//若是獲取的表單信息是普通的文本信息
if(item.isFormField())
{
//獲取用戶具體輸入的字符串 由於表單提交過來的是 字符串類型的
String value = item.getString() ;
request.setAttribute(name, value);
}
//對傳入的非 簡單的字符串進行處理 ,好比說二進制的圖片,電影這些
else
{
/**
* 如下三步,主要獲取上傳文件的名字
*/
//獲取路徑名
String value = item.getName() ;
//索引到最後一個反斜槓
int start = value.lastIndexOf("\\");
//截取上傳文件的字符串名字,加1是 去掉反斜槓,
String filename = value.substring(start+1);
request.setAttribute(name, filename);
//真正寫到磁盤上
//它拋出的異常 用exception 捕捉
//item.write( new File(path,filename) );//第三方提供的
//手動寫的
OutputStream out = new FileOutputStream(new File(path,filename));
InputStream in = item.getInputStream() ;
int length = 0 ;
byte [] buf = new byte[1024] ;
System.out.println("獲取上傳文件的總共的容量:"+item.getSize());
// in.read(buf) 每次讀到的數據存放在 buf 數組中
while( (length = in.read(buf) ) != -1)
{
//在 buf 數組中取出數據寫到(輸出流)磁盤上
out.write(buf, 0, length);
}
in.close();
out.flush();
out.close();
}
}
} catch (FileUploadException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
request.getRequestDispatcher("filedemo.jsp").forward(request, response);
}
}
3.filedemo.jsp
[html] view plaincopy
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'filedemo.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
</head>
<body>
用戶名:${requestScope.usename } <br/>
文件:${requestScope.file1 }<br/>
${requestScope.file2 }<br/>
<!-- 把上傳的圖片顯示出來 -->
<img alt="go" src="upload/<%=(String)request.getAttribute("file1")%> " />
</body>
</html>
4結果頁面: