2009-11-29 15:24
servlet實現文件上傳
轉載: 在Web 應用程序中,用戶向服務器上傳文件是很是廣泛的操做。使用Servlet 實現文件的上傳是比較簡單的。 編程思路:下面的UploadServlet.java ,其主要功能爲從InputStream 中讀取文件內容,將上傳文件保存在根目錄下,且文件名與上傳文件的文件名一致。 UploadServlet.java 的源代碼以下:(代碼節選) import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class UploadServlet extends HttpServlet { //default maximum allowable file size is 1000k static final int MAX_SIZE = 1024000; //instance variables to store root and success message String rootPath, successMessage; /** * init method is called when servlet is initialized. */ public void init(ServletConfig config) throws ServletException { super.init(config); //get path in which to save file rootPath = config.getInitParameter("RootPath"); if (rootPath == null) { rootPath = "/"; } /*Get message to show when upload is complete. Used only if a success redirect page is not supplied.*/ successMessage = config.getInitParameter("SuccessMessage"); if (successMessage == null) { successMessage = "File upload complete!"; } } /** * doPost reads the uploaded data from the request and writes * it to a file. */ public void doPost(HttpServletRequest request, HttpServletResponse response) { ServletOutputStream out=null; DataInputStream in=null; FileOutputStream fileOut=null; try { /*set content type of response and get handle to output stream in case we are unable to redirect client*/ response.setContentType("text/plain"); out = response.getOutputStream(); //get content type of client request String contentType = request.getContentType(); out.println("\ncontentType= " + contentType); //make sure content type is multipart/form-data if(contentType != null && contentType.indexOf( "multipart/form-data") != -1) { //open input stream from client to capture upload file in = new DataInputStream(request.getInputStream()); //get length of content data int formDataLength = request.getContentLength(); out.println("\nContentLength= " + formDataLength); //allocate a byte array to store content data byte dataBytes[] = new byte[formDataLength]; //read file into byte array int bytesRead = 0; int totalBytesRead = 0; int sizeCheck = 0; while (totalBytesRead < formDataLength= { //check for maximum file size violation sizeCheck = totalBytesRead + in.available(); if (sizeCheck > MAX_SIZE) { out.println("Sorry, file is too large to upload."); return; } …. …. } 編程技巧說明: 首先定義上傳文件最大字節爲1024K(1M),上傳文件保存在根目錄(/)下,從請求的InputStream 讀取實體數據,根據請求頭Content-Type 和contenLength 等值,從實體數據中解析出表單Form 數據中的filename 和Content-Type 等值,而後將實體數據中真正屬於上傳文件的內容保存到服務器上的根目錄文件中。 其中用到涉及中文輸出: String fileStr=new String(dataBytes,"ISO8859_1"); fileOut=new FileOutputStream(rootPath+fileName); fileOut.write(fileStr.getBytes("ISO8859_1"),0,fileStr.legth()); UploadFile.html 的源代碼以下: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb_2312-80"> <title>Upload a File</title> </head> <body> <h1>文件上傳 </h1> <h2>提示:您的瀏覽器必須能支持文件上傳!</h2> <form action="servlet/uploadServlet" method="POST" enctype="multipart/form-data"> <div align="left"> <pre>發送文件:<input type="file" size="40" name="upl-file"> </BR> <input type="submit" value="開始發送" now> <input type="reset" value="重 設"></pre> </div> </form> </body> </html> 小結: (1) Servlet 編程要求讀者已經掌握了Java 語言程序設計,最好對面向對象也有必定的瞭解。Java 語言程序設計最主要的是對Java 的類庫的使用,一樣掌握Servlet 編程也要求熟練使用Sun 公司提供的JSDK。 (2) 一個好的Servlet 程序必需要考慮得全面。因爲Servlet 在服務器上執行,爲客戶提供服務,有時可能會有多個客戶同時向一個服務器發請求,這就要求Servlet 程序必須可以保證良好的併發性。容許Servlet 併發執行,就要解決Servlet 中變量和同步訪問以及共享的問題,尤爲要特別注意服務器的一些昂貴的資源。另外一方面,Servlet 要把處理結果返回給客戶,要求Servlet 充分考慮響應的速度和響應結果的簡潔明瞭,同時對客戶的錯誤請求有必定的容錯性。 (3) 解決Servlet 中文輸出問題 當Servlet 輸出的文檔中有中文時,須要在Servlet 中使用下面的語句來指明: response.setContentType("text/html;charset=gb2312"); 在JSP中使用: <%@page contentType="text/html;charset=gb2312"%> 這二者是等效的。 若是在Servlet 中文顯示有問題,可從如下幾方面來考慮: * 修改區域設置---在控制面板中選擇區域設置,如設爲英語(美國)。 * 在編譯Servlet 時加入代碼選項,如:javac -encoding iso8859-1 ghqServlet.java * 在源程序中加入編碼轉換函數,如:out.println(new String("請輸入用戶名").getBytes("GBK"),"ISO8859_1")); 或者使用下面的方法: String Str="請輸入用戶名";Byte[] tempByte=Str.getBytes("ISO8859_1");String tempStr=new String(tempByte); 這樣tempStr 中的中文就能夠正確顯示了。 因爲Servlet 採用不一樣的引擎,其中文的解決方法可能不一樣;所以,當出現中文顯示問題時,建議必定要多實驗,最終總會獲得解決。 (4) Java Servlet 程序彌補了 Applet 程序的不足, Servlet 主要應用在HTTP Servlet 接收請求(HttpServletRequest接口)和產生響應(HttpServletResponse接口)、使用Cookies 及會話管理(HttpSession 接口)應用、Java Servlet 在網絡上的編程應用如利用Servlet 上傳和下載文件、Servlet 的數據庫編程、在Servlet 中發送和接受郵件以及Java Servlet 在RMI和XML等方面的應用,所以Servlet 的編程應用仍是比較普遍的。 一般 Servlet 能夠使用如下的方法調用: * 客戶經過訪問 Servlet 產生的文檔來調用 Server 獲得一個訪問文檔的請求後,查找配置參數,就會發現所需文檔不是一個靜態文檔,而是由 Servlet 對象產生的,因而服務器就會把請求傳給 Servlet,Servlet 調用 "service" 方法產生輸出。這種方法與傳統的調用 CGI 的方法相似。 * 直接經過 URL 調用 Servlet 客戶(瀏覽器)使用如下格式的 URL 調用: http://Servlet_Host_Name/servlet/<servlet URL> <servlet URL>是指向 Servlet 位置的普通的URL,它的格式以下所示: name?para1=value1¶2=value2... 其中,name 是 Servlet 的名字,"?" 後面跟的是一串參數,para1 是第一個參數名,value1是它的值,para1 是第二個參數名,value2是它的值,以此類推。一般Servlet 存放的位置可能與服務器不在同一臺機器上,這時服務器就要動態加載、初始化和執行Servlet 類。 * 經過 SSI(Server-Side Includes) 標誌調用 任何一個以.sthml 爲擴展名的文件都是服務器要分析的文件。在該文件中,若是出現了Servlet標誌,那麼服務器就會運行該Servlet,並把它的輸出結果插入標誌所指示的地方。 * 把 Servlet 放在/servlet/目錄下 若是一個 Servlet 的類文件被放在/servlet/目錄下,那麼就能夠直接使用它的類名調用它。 * 經過 Filter Chain 調用 這種方法通常要把 Servlet 配置成當一個特定的 MIME 類型被設置爲響應時再調用。 但Servlet 也有它的缺點: * 在複雜的HTML 網頁中,加入的動態部分若是用Servlet 來處理的話,那對程序員來講簡直是一場噩夢。 * Servlet 要進行編譯、放入執行碼等複雜的調用過程。 正是因爲Servlet存在的缺點,纔出現使用JSP 技術來解決上面的問題,這也正是JSP 的優勢。