首页 > 编程 > JSP > 正文

jspSmartUpload上传下载全攻略2

2024-09-05 00:20:30
字体:
来源:转载
供稿:网友
c.下载文件常用的方法

1、setcontentdisposition

作用:将数据追加到mime文件头的content-disposition域。jspsmartupload组件会在返回下载的信息时自动填写mime文件头的content-disposition域,如果用户需要添加额外信息,请用此方法。

原型:public void setcontentdisposition(string contentdisposition)

其中,contentdisposition为要添加的数据。如果contentdisposition为null,则组件将自动添加"attachment;",以表明将下载的文件作为附件,结果是ie浏览器将会提示另存文件,而不是自动打开这个文件(ie浏览器一般根据下载的文件扩展名决定执行什么操作,扩展名为doc的将用word程序打开,扩展名为pdf的将用acrobat程序打开,等等)。

2、downloadfile

作用:下载文件。

原型:共有以下三个原型可用,第一个最常用,后两个用于特殊情况下的文件下载(如更改内容类型,更改另存的文件名)。

① public void downloadfile(string sourcefilepathname)

其中,sourcefilepathname为要下载的文件名(带目录的文件全名)

② public void downloadfile(string sourcefilepathname,string contenttype)

其中,sourcefilepathname为要下载的文件名(带目录的文件全名),contenttype为内容类型(mime格式的文件类型信息,可被浏览器识别)。

③ public void downloadfile(string sourcefilepathname,string contenttype,string destfilename)

其中,sourcefilepathname为要下载的文件名(带目录的文件全名),contenttype为内容类型(mime格式的文件类型信息,可被浏览器识别),destfilename为下载后默认的另存文件名。

三、文件上传篇

㈠ 表单要求

对于上传文件的form表单,有两个要求:

1、method应用post,即method="post"。

2、增加属性:enctype="multipart/form-data"

下面是一个用于上传文件的form表单的例子:

<form method="post" enctype="multipart/form-data" action="/jspsmartupload/upload.jsp"><input type="file" name="myfile"><input type="submit"></form>


㈡ 上传的例子

1、上传页面upload.html

本页面提供表单,让用户选择要上传的文件,点击"上传"按钮执行上传操作。

页面源码如下:

<!--    文件名:upload.html作  者:纵横软件制作中心雨亦奇([email protected])--><!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>&nbsp;</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作  者:纵横软件制作中心雨亦奇([email protected])--%><%@ page contenttype="text/html; charset=gb2312" language="java" import="java.util.*,com.jspsmart.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>


四、文件下载篇

1、下载链接页面download.html

页面源码如下:

<!--文件名:download.html作  者:纵横软件制作中心雨亦奇([email protected])--><!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><a href="jsp/do_download.jsp">点击下载</a></body></html>


2、下载处理页面do_download.jsp do_download.jsp展示了如何利用jspsmartupload组件来下载文件,从下面的源码中就可以看到,下载何其简单。

源码如下:

<%@ 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/如何赚取我的第一桶金.doc");%>


注意,执行下载的页面,在java脚本范围外(即<% ... %>之外),不要包含html代码、空格、回车或换行等字符,有的话将不能正确下载。不信的话,可以在上述源码中%><%之间加入一个换行符,再下载一下,保证出错。因为它影响了返回给浏览器的数据流,导致解析出错。

3、如何下载中文文件

jspsmartupload虽然能下载文件,但对中文支持不足。若下载的文件名中有汉字,则浏览器在提示另存的文件名时,显示的是一堆乱码,很扫人兴。上面的例子就是这样。(这个问题也是众多下载组件所存在的问题,很少有人解决,搜索不到相关资料,可叹!)

为了给jspsmartupload组件增加下载中文文件的支持,我对该组件进行了研究,发现对返回给浏览器的另存文件名进行utf-8编码后,浏览器便能正确显示中文名字了。这是一个令人高兴的发现。于是我对jspsmartupload组件的smartupload类做了升级处理,增加了toutf8string这个方法,改动部分源码如下:

public void downloadfile(string s, string s1, string s2, int i)throws servletexception, ioexception, smartuploadexception    {if(s == null)    throw new illegalargumentexception("file '" + s +    "' not found (1040).");if(s.equals(""))    throw new illegalargumentexception("file '" + s +    "' not found (1040).");if(!isvirtual(s) && m_denyphysicalpath)    throw new securityexception("physical path is    denied (1035).");if(isvirtual(s))    s = m_application.getrealpath(s);java.io.file file = new java.io.file(s);fileinputstream fileinputstream = new fileinputstream(file);long l = file.length();boolean flag = false;int k = 0;byte abyte0[] = new byte[i];if(s1 == null)    m_response.setcontenttype("application/x-msdownload");elseif(s1.length() == 0)    m_response.setcontenttype("application/x-msdownload");else    m_response.setcontenttype(s1);m_response.setcontentlength((int)l);m_contentdisposition = m_contentdisposition != null ?m_contentdisposition : "attachment;";if(s2 == null)    m_response.setheader("content-disposition",     m_contentdisposition + " filename=" +     toutf8string(getfilename(s)));elseif(s2.length() == 0)    m_response.setheader("content-disposition",     m_contentdisposition);else    m_response.setheader("content-disposition",     m_contentdisposition + " filename=" + toutf8string(s2));while((long)k < l){    int j = fileinputstream.read(abyte0, 0, i);    k += j;    m_response.getoutputstream().write(abyte0, 0, j);}fileinputstream.close();    }    /**     * 将文件名中的汉字转为utf8编码的串,以便下载时能正确显示另存的文件名.     * 纵横软件制作中心雨亦奇2003.08.01     * @param s 原文件名     * @return 重新编码后的文件名     */    public static string toutf8string(string s) {stringbuffer sb = new stringbuffer();for (int i=0;i<s.length();i++) {    char c = s.charat(i);    if (c >= 0 && c <= 255) {sb.append(c);    } else {byte[] b;try {    b = character.tostring(c).getbytes("utf-8");} catch (exception ex) {    system.out.println(ex);    b = new byte[0];}for (int j = 0; j < b.length; j++) {    int k = b[j];    if (k < 0) k += 256;    sb.append("%" + integer.tohexstring(k).    touppercase());}    }}return sb.tostring();    }


注意源码中粗体部分,原jspsmartupload组件对返回的文件未作任何处理,现在做了编码的转换工作,将文件名转换为utf-8形式的编码形式。utf-8编码对英文未作任何处理,对中文则需要转换为%xx的形式。toutf8string方法中,直接利用java语言提供的编码转换方法获得汉字字符的utf-8编码,之后将其转换为%xx的形式。

将源码编译后打包成jspsmartupload.jar,拷贝到tomcat的shared/lib目录下(可为所有web应用程序所共享),然后重启tomcat服务器就可以正常下载含有中文名字的文件了。另,toutf8string方法也可用于转换含有中文的超级链接,以保证链接的有效,因为有的web服务器不支持中文链接。

小结:jspsmartupload组件是应用jsp进行b/s程序开发过程中经常使用的上传下载组件,它使用简单,方便。现在我又为其加上了下载中文名字的文件的支持,真个是如虎添翼,必将赢得更多开发者的青睐。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表