站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题彻底解决中文名文件下载和下载文件内容乱码问题

彻底解决中文名文件下载和下载文件内容乱码问题

摘要: 彻底解决中文名文件下载和下载文件内容乱码问题
<tr> <td>

之前,写过一个Download.jsp文件,可以解决下载文件乱码问题(诸如:DOC,XSL文件等等).
后来发现,遇到中文名的文件的时候,文件下载将会报错~~~~
今天,通过改写原Download.jsp文件已经彻底解决了这个问题~
现在,把一整套的文件上传下载的方法给贴出来~~~以便大家借鉴!~!~!~!~!
作者:古埃及法老
-------------------------------------------------------------------------------------------------------------------
测试环境:WEBLOGIC 8.1,WIN XP SP4,IE 6.0
-----------------------------------------------------
文件上传:
-----------------------------------------
准备工作:导入著名的SmartUpload.jar组件包
upload.jsp文件
---------------------------------------------------------
<%@ page contentType="text/html; charset=gb2312" %>
<%
request.setCharacterEncoding("gb2312"); // 这句话很重要,否则遇到中文就出错~
%>
<head>上传

</head>
<body leftMargin=0 topMargin=0>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DEE7EF">
<tr>
<td align="center">
<form action="upload_ok.jsp" method=post name="Upload" enctype="multipart/form-data">


请输入附件文件的所在路径 * 为必填项目



<table width="317" border=0 cellPadding=0>

<tr>
<td align=right vAlign=center nowrap>附件路径:</td>
<td><input type="file" name="file" style="border: 1px #FFFFFF solid;background:#efefef" > *</td>
</tr>
<tr align="center">
<td height=60 colspan="2" vAlign=center nowrap> <input style="height:22px" name=B1 type=submit value=" 确 定 " >
<input style="height:22px" name=B2 type=reset value=" 取 消 " >
</td>
</tr>

</table>
</form>
</td>
</tr>
</table>
</body>
---------------------------------------------------------
upload_ok.jsp文件
---------------------------------------------------------
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="com.jspsmart.upload.*" %>
<head>上传成功!

</head>
<body leftMargin=0 topMargin=0>

<table width="80%" border="0" cellpadding="0" cellspacing="0" bgcolor="#DEE7EF">
<tr>
<td align="center">
<%
int count=0;
String fileName = null;
mySmartUpload.initialize(pageContext);
mySmartUpload.upload();
com.jspsmart.upload.File myFile = mySmartUpload.getFiles().getFile(0);
if (!myFile.isMissing()) {
//String ext=myFile.getFileExt();//得到后缀
fileName = myFile.getFileName();
myFile.saveAs("/files/" + fileName);//你要存放文件所在文件夹的相对路径
out.println("文件:"+fileName+"上传成功!
文件大小:" + myFile.getSize() + "kb
");
}
%>
</body>
---------------------------------------------------------

文件下载:
-----------------------------------------
文件的超连接写法范例:
<% String fname ="中文测试.xsl"; //假设你的文件名是:中文测试.xsl
%>
">下 载
文件的超连接写法范例-2 重新用utf-8对文件名编码:
<%@ page contentType="text/html;charset=gb2312" session="true"%>
<% String name=java.net.URLEncoder.encode("世界文化.doc","UTF-8"));%> ">世界文化.doc

Download.jsp文件
---------------------------------------------------------
<%
java.io.BufferedInputStream bis=null;
java.io.BufferedOutputStream bos=null;
try{
String filename=request.getParameter("filename");
filename=new String(filename.getBytes("iso8859-1"),"gb2312");
response.setContentType("application/x-msdownload");
response.setHeader("Content-disposition","attachment; filename="+new String(filename.getBytes("gb2312"),"iso8859-1"));
bis =new java.io.BufferedInputStream(new java.io.FileInputStream(config.getServletContext().getRealPath("files/" + filename)));
bos=new java.io.BufferedOutputStream(response.getOutputStream());
byte[] buff = new byte[2048];
int bytesRead;
while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
bos.write(buff,0,bytesRead);
}
}
catch(Exception e){
e.printStackTrace();
}
finally {
if (bis != null)bis.close();
if (bos != null)bos.close();
}
%>

</td> </tr> </table>
↑返回目录
前一篇: JSP教程(七)-pluginAction的使用
后一篇: 手动部署EJB 亲自体验EJB开发流程