如果表单被封装,则无法使用 request 直接取得输入参数 Smartupload 之中为用户重新提供了一个request 方法,可以取得输入内容
upload.html
< html>< head>< title>文件上传< meta http-equiv="Content-Type" content="text/html; charset=gb2312">< /head>< p> < p align="center">上传文件选择< FORM METHOD="POST" ACTION="do_upload.jsp"ENCTYPE="multipart/form-data">< input type="hidden" name="TEST" value="good">
1、 |
2、 |
3、 |
4、 |
|
do_upload.jsp
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.util.*,com.jspsmart.upload.*" errorPage="" %>< html>< head>< title>文件上传处理页面< meta http-equiv="Content-Type" content="text/html; charset=gb2312">< /head>< %// 新建一个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+"个文件上传成功!");// 利用Request对象获取参数之值out.println("TEST="+su.getRequest().getParameter("TEST")+"");// 逐一提取上传文件信息,同时可保存文件。for (int i=0;i");out.println("表单项名(FieldName)"+ file.getFieldName() + "");out.println("文件长度(Size)" + file.getSize() + "");out.println("文件名(FileName)" + file.getFileName() + "");out.println("文件扩展名(FileExt)" + file.getFileExt() + "");out.println("文件全名(FilePathName)"+ file.getFilePathName() + "");out.println(" ");// 将文件另存file.saveAs("../upload3/" + file.getFileName());// 另存到以WEB应用程序的根目录为文件根目录的目录下file.saveAs("/upload2/" + file.getFileName(), su.SAVE_VIRTUAL);// 另存到操作系统的根目录为文件根目录的目录下file.saveAs("c:\\temp\\" + file.getFileName(), su.SAVE_PHYSICAL);}%>< /body>< /html>
download.html
< html>< head>< title>下载< meta http-equiv="Content-Type" content="text/html; charset=gb2312">< /head>< body>< a href="do_download.jsp">点击下载< /body>< /html>
do_download.jsp
<%@ page contentType="text/html;charset=gb2312" import="com.jspsmart.upload.*" %><%// 新建一个SmartUpload对象SmartUpload su = new SmartUpload();// 初始化su.initialize(pageContext);// 设定contentDisposition为null以禁止浏览器自动打开文件,//保证点击链接后是下载文件。若不设定,则下载的文件扩展名为//doc时,浏览器将自动用word打开它。扩展名为pdf时,//浏览器将用acrobat打开。su.setContentDisposition(null);// 下载文件su.downloadFile("/upload/1.png");%>