common-fileupload組件
下載地址:http://jakarta.apache.org/commons/fileupload/
下載後解壓zip包,將commons-fileupload-1.0.jar複製到tomcat的webapps/你的webapp/WEB-INF/lib/下
Create a servlet
import java.io.*;
import java.util.*;
import javax.servlet.*;
import javax.servlet.http.*;
import org.apache.commons.fileupload.*;
public class Upload extends HttpServlet {
private String uploadPath = "C://upload//"; // 用於存放上傳檔案的目錄
private String tempPath = "C://upload//tmp//"; // 用於存放臨時檔案的目錄
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
try {
DiskFileUpload fu = new DiskFileUpload();
// 設定最大檔案尺寸,這裡是4MB
fu.setSizeMax(4194304);
// 設定緩衝區大小,這裡是4kb
fu.setSizeThreshold(4096);
// 設定臨時目錄:
fu.setRepositoryPath(tempPath);
// 得到所有的檔案:
List fileItems = fu.parseRequest(request);
Iterator i = fileItems.iterator();
// 依次處理每一個檔案:
while(i.hasNext()) {
FileItem fi = (FileItem)i.next();
// 獲得檔案名稱,這個檔案名稱包括路徑:
String fileName = fi.getName();
if(fileName!=null) {
// 在這裡可以記錄使用者和檔案資訊
// ...
// 寫入檔案a.txt,你也可以從fileName中提取檔案名稱:
fi.write(new File(uploadPath + "a.txt"));
}
}
// 跳轉到上傳成功提示頁面
}
catch(Exception e) {
// 可以跳轉出錯頁面
}
}
}
//當servlet收到瀏覽器發出的Post請求後,在doPost()方法中實現檔案上傳。以下是範例程式碼:
如果要在設定檔中讀取指定的上傳檔案夾,可以在init()方法中執行:
public void init() throws ServletException {
uploadPath = ....
tempPath = ....
// 檔案夾不存在就自動建立:
if(!new File(uploadPath).isDirectory())
new File(uploadPath).mkdirs();
if(!new File(tempPath).isDirectory())
new File(tempPath).mkdirs();
}
配置servlet,用記事本開啟tomcat/webapps/你的webapp/WEB-INF/web.xml,沒有的話建立一個。典型配置如下:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<servlet>
<servlet-name>Upload</servlet-name>
<servlet-class>Upload</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Upload</servlet-name>
<url-pattern>/fileupload</url-pattern>
</servlet-mapping>
</web-app>
配置好servlet後,啟動tomcat,寫一個簡單的html測試:
<form action="fileupload" method="post" enctype="multipart/form-data" name="form1">
<input type="file" name="file">
<input type="submit" name="Submit" value="upload">
</form>
注意action="fileupload"其中fileupload是配置servlet時指定的url-pattern。 (轉載)