随笔-200  评论-148  文章-15  trackbacks-0
这篇文章也是我收集的,如下:

碰到文件乱码,google了一下,发现这篇文章还不赖


摘录如下:
    之前,写过一个Download.jsp文件,可以解决下载文件乱码问题(诸如:DOC,XSL文件等等).
后来发现,遇到中文名的文件的时候,文件下载将会报错~~~~
今天,通过改写原Download.jsp文件已经彻底解决了这个问题~
现在,把一整套的文件上传下载的方法给贴出来~~~以便大家借鉴!~!~!~!~! 
作者:古埃及法老

download.jsp文件


---------------------------------------------------------

 1 <%
 2   java.io.BufferedInputStream bis=null;
 3   java.io.BufferedOutputStream  bos=null;
 4 try{
 5  String filename=request.getParameter("filename");
 6              filename=new String(filename.getBytes("iso8859-1"),"gb2312");
 7  response.setContentType("application/x-msdownload");
 8  response.setHeader("Content-disposition","attachment; filename="+new String(filename.getBytes("gb2312"),"iso8859-1"));
 9  bis =new java.io.BufferedInputStream(new java.io.FileInputStream(config.getServletContext().getRealPath("files/" + filename)));
10  bos=new java.io.BufferedOutputStream(response.getOutputStream()); 
11  byte[] buff = new byte[2048];
12  int bytesRead;
13  while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
14   bos.write(buff,0,bytesRead);
15  }
16 }
17 catch(Exception e){
18  e.printStackTrace();
19 }
20 finally {
21  if (bis != null)bis.close();
22  if (bos != null)bos.close();
23 }
24 %>
注意,关键就是setHeader里的filename需要重新编码,格式是ISO-8859-1就OK了

以下是我自己项目中用到的代码片断,供参考:

list.jsp: 显示附件名称的页面

 1 <tr>
 2             <td height="25" class="tdcor">&nbsp;&nbsp;件&nbsp;</td>
 3             <td colspan="3" height=50>
 4                 <%
 5                     if (null != publish.getAttatchFilename() &&
 6 publish.getAttatchFilename().length() > 0) {
 7                 %>
 8                 <a href="publish_do.jsp?method=download&fileName=
 9 <%=URLEncoder.encode(publish.getAttatchFilename(),"GBK")%>">
10 <%=URLDecoder.decode(publish.getAttatchFilename(),"GBK")%></a>
11                 <%
12                     }
13                 %>
14             </td>
15 </tr>
download.jsp:下载页面

 1 else if (null != method && method.equals("download")) {//下载附件
 2 
 3         String fileName = request.getParameter("fileName");
 4         File file = new File(Constants.PUBLISH_FILE_PATH + "/" + URLDecoder.decode(fileName,"GBK"));
 5         response.reset();
 6         response.setContentType("application/octet-stream; charset=GBK");
 7         response.addHeader("Content-Disposition""attachment; filename=" + CourseDetailBusiness.transfer(URLDecoder.decode(fileName,"GBK"),"GBK","ISO-8859-1"));
 8         response.setContentLength((int) file.length());
 9 
10         byte[] buffer = new byte[4096];
11         BufferedOutputStream output = null;
12         BufferedInputStream input = null;
13 
14         // 写缓冲区:
15         try {
16             output = new BufferedOutputStream(response.getOutputStream());
17             input = new BufferedInputStream(new FileInputStream(file));
18 
19             int n = (-1);
20             while ((n = input.read(buffer, 04096)) > -1) {
21                 output.write(buffer, 0, n);
22             }
23             response.flushBuffer();
24         }
25         catch (Exception e) {
26         } // maybe user cancelled download
27         finally {
28             if (input != null) input.close();
29             if (output != null) output.close();
30         }

说明:
1。文件名在数据库中保存的编码为URLEncode
2.在list.jsp显示的时候多了一次encode,不知为什么,不encode一次还不行,实际上是第二次编码了

posted on 2006-06-15 13:14 无声 阅读(3388) 评论(5)  编辑  收藏 所属分类: 职场生活

评论:
# re: jsp实现文件下载与中文文件名乱码问题解决(1) 2006-07-20 15:26 | Richar
output = new BufferedOutputStream(response.getOutputStream());
这一句应该会产生java.lang.IllegalStateException错误。在JSP里面是禁止这样做的,可以写一个Servlet  回复  更多评论
  
# re: jsp实现文件下载与中文文件名乱码问题解决(1) 2007-02-05 11:01 | jactive
to Richar: out.close()再用output写就可以了

  回复  更多评论
  
# re: jsp实现文件下载与中文文件名乱码问题解决(1) 2008-05-16 01:01 | 小非
这篇文章在网路中广泛流传,看了那么多人搜藏这片文章,居然很少人提出异议,真是让人失望。最上面的代码我实验过,一:点击下载后弹出的保存对话框中,名称一项遇中文是一横杠;二,就是如一楼的那位说的抱错情况。本人正在做这个东西,找半天也没解决,继续关注...  回复  更多评论
  
# re: jsp实现文件下载与中文文件名乱码问题解决(1) 2008-05-16 08:32 | 青诚
等有空,我上传一个完整的代码。  回复  更多评论
  
# re: jsp实现文件下载与中文文件名乱码问题解决(1) 2009-03-10 16:14 | zhmm
CourseDetailBusiness 在哪里?  回复  更多评论
  

只有注册用户登录后才能发表评论。


网站导航: