JSP可以通過(guò)HTML的form表單上傳文件到服務(wù)器。 文件類型可以是文本文件、二進(jìn)制文件、圖像文件等其他任何文檔。
接下來(lái)我們使用HTML標(biāo)簽來(lái)創(chuàng)建文件上傳表單,以下為要注意的點(diǎn):
以下是一個(gè)上傳文件的表單,實(shí)例如下:
<html> <head> <title>File Uploading Form</title> </head> <body> <h3>File Upload:</h3> Select a file to upload: <br /> <form action="UploadServlet" method="post" enctype="multipart/form-data"> <input type="file" name="file" size="50" /> <br /> <input type="submit" value="Upload File" /> </form> </body> </html>
在你本地瀏覽器訪問(wèn)該文件,顯示界面如下所示,在你點(diǎn)擊"Upload File"會(huì)彈出一個(gè)窗口讓你選擇要上傳的文件:
首先我們先定義文件上傳后存儲(chǔ)在服務(wù)上的位置,你可以將路徑寫在你的程序當(dāng)中,或者我們可以在web.xml配置文件中通過(guò)設(shè)置 context-param 元素來(lái)設(shè)置文件存儲(chǔ)的目錄,如下所示:
<web-app>
....
<context-param>
<description>文件上傳地址</description>
<param-name>file-upload</param-name>
<param-value>
c:\apache-tomcat-5.5.29\webapps\data\
</param-value>
</context-param>
....
</web-app>
以下腳本文件UploadFile.jsp可以處理多個(gè)上傳的文件,在使用該腳本前,我們需要注意以下幾點(diǎn):
<%@ page import="java.io.*,java.util.*, javax.servlet.*" %>
<%@ page import="javax.servlet.http.*" %>
<%@ page import="org.apache.commons.fileupload.*" %>
<%@ page import="org.apache.commons.fileupload.disk.*" %>
<%@ page import="org.apache.commons.fileupload.servlet.*" %>
<%@ page import="org.apache.commons.io.output.*" %>
<%
File file ;
int maxFileSize = 5000 * 1024;
int maxMemSize = 5000 * 1024;
ServletContext context = pageContext.getServletContext();
String filePath = context.getInitParameter("file-upload");
// 驗(yàn)證上傳內(nèi)容了類型
String contentType = request.getContentType();
if ((contentType.indexOf("multipart/form-data") >= 0)) {
DiskFileItemFactory factory = new DiskFileItemFactory();
// 設(shè)置內(nèi)存中存儲(chǔ)文件的最大值
factory.setSizeThreshold(maxMemSize);
// 本地存儲(chǔ)的數(shù)據(jù)大于 maxMemSize.
factory.setRepository(new File("c:\\temp"));
// 創(chuàng)建一個(gè)新的文件上傳處理程序
ServletFileUpload upload = new ServletFileUpload(factory);
// 設(shè)置最大上傳的文件大小
upload.setSizeMax( maxFileSize );
try{
// 解析獲取的文件
List fileItems = upload.parseRequest(request);
// 處理上傳的文件
Iterator i = fileItems.iterator();
out.println("<html>");
out.println("<head>");
out.println("<title>JSP File upload</title>");
out.println("</head>");
out.println("<body>");
while ( i.hasNext () )
{
FileItem fi = (FileItem)i.next();
if ( !fi.isFormField () )
{
// 獲取上傳文件的參數(shù)
String fieldName = fi.getFieldName();
String fileName = fi.getName();
boolean isInMemory = fi.isInMemory();
long sizeInBytes = fi.getSize();
// 寫入文件
if( fileName.lastIndexOf("\\") >= 0 ){
file = new File( filePath ,
fileName.substring( fileName.lastIndexOf("\\"))) ;
}else{
file = new File( filePath ,
fileName.substring(fileName.lastIndexOf("\\")+1)) ;
}
fi.write( file ) ;
out.println("Uploaded Filename: " + filePath +
fileName + "<br>");
}
}
out.println("</body>");
out.println("</html>");
}catch(Exception ex) {
System.out.println(ex);
}
}else{
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet upload</title>");
out.println("</head>");
out.println("<body>");
out.println("<p>No file uploaded</p>");
out.println("</body>");
out.println("</html>");
}
%>
接下來(lái)讓我們通過(guò)瀏覽器訪問(wèn) http://localhost:8080/UploadFile.htm,界面如下所示,并上傳文件:
更多建議: