㈠ 表單要求
對於上傳檔案的form表單,有兩個要求:
1、method應用post,即method="post"。
2、增加屬性:enctype="multipart/form-data"
下面是一個用於上傳檔案的form表單的例子:
<form method="post" enctype="multipart/form-data"
action="/jsp教程smartupload/upload.jsp">
<input type="file" name="myfile">
<input type="submit">
</form>
㈡ 上傳的例子
1、上傳頁面upload.html
本頁面提供表單,讓使用者選擇要上傳的檔案,點擊"上傳"按鈕執行上傳操作。
頁面源碼如下:
<!--
檔案名稱:upload.html
作 者:縱橫軟體製作中心雨亦奇(zhsoft88@sohu.com)
-->
<!doctype html public "-//w3c//dtd html 4.01 transitional//en">
<html>
<head>
<title>檔案上傳</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<p> </p>
<p align="center">上傳檔案選擇</p>
<form method="post" action="jsp/do_upload.jsp"
enctype="multipart/form-data">
<input type="hidden" name="test" value="good">
<table width="75%" border="1" align="center">
<tr>
<td><div align="center">1、
<input type="file" name="file1" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">2、
<input type="file" name="file2" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">3、
<input type="file" name="file3" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">4、
<input type="file" name="file4" size="30">
</div></td>
</tr>
<tr>
<td><div align="center">
<input type="submit" name="submit" value="上傳它!">
</div></td>
</tr>
</table>
</form>
</body>
</html>
2、上傳處理頁面do_upload.jsp
本頁面執行檔案上傳操作。頁面源碼中詳細介紹了上傳方法的用法,在此不贅述了。
頁面源碼如下:
<%--
檔案名稱:do_upload.jsp
作 者:縱橫軟體製作中心雨亦奇(zhsoft88@sohu.com)
--%>
<%@ page contenttype="text/html; charset=gb2312" language="java"
import="java.util.*,com.jsps教程mart.upload.*" errorpage="" %>
<html>
<head>
<title>檔案上傳處理頁面</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
</head>
<body>
<%
// 建立一個smartupload對象
smartupload su = new smartupload();
// 上傳初始化
su.initialize(pagecontext);
// 設定上傳限制
// 1.限制每個上傳檔案的最大長度。
// su.setmaxfilesize(10000);
// 2.限制總上傳資料的長度。
// su.settotalmaxfilesize(20000);
// 3.設定允許上傳的檔案(通過副檔名限制),僅允許doc,txt檔案。
// su.setallowedfileslist("doc,txt");
// 4.設定禁止上傳的檔案(通過副檔名限制),禁止上傳帶有exe,bat,
jsp,htm,html副檔名的檔案和沒有副檔名的檔案。
// su.setdeniedfileslist("exe,bat,jsp,htm,html,,");
// 上傳檔案
su.upload();
// 將上傳檔案全部儲存到指定目錄
int count = su.save("/upload");
out.println(count+"個檔案上傳成功!<br>");
// 利用request對象擷取參數之值
out.println("test="+su.getrequest().getparameter("test")
+"<br><br>");
// 逐一提取上傳檔案資訊,同時可儲存檔案。
for (int i=0;i<su.getfiles().getcount();i++)
{
com.jspsmart.upload.file file = su.getfiles().getfile(i);
// 若檔案不存在則繼續
if (file.ismissing()) continue;
// 顯示當前檔案資訊
out.println("<table border=1>");
out.println("<tr><td>表單項名(fieldname)</td><td>"
+ file.getfieldname() + "</td></tr>");
out.println("<tr><td>檔案長度(size)</td><td>" +
file.getsize() + "</td></tr>");
out.println("<tr><td>檔案名稱(filename)</td><td>"
+ file.getfilename() + "</td></tr>");
out.println("<tr><td>副檔名(fileext)</td><td>"
+ file.getfileext() + "</td></tr>");
out.println("<tr><td>檔案全名(filepathname)</td><td>"
+ file.getfilepathname() + "</td></tr>");
out.println("</table><br>");
// 將檔案另存
// file.saveas("/upload/" + myfile.getfilename());
// 另存到以web應用程式的根目錄為檔案根目錄的目錄下
// file.saveas("/upload/" + myfile.getfilename(),
su.save_virtual);
// 另存到作業系統的根目錄為檔案根目錄的目錄下
// file.saveas("c:temp" + myfile.getfilename(),
su.save_physical);
}
%>
</body>
</html>