码迷,mamicode.com
首页 > 其他好文 > 详细

设置文件下载时客户端显示的附件中文名

时间:2017-06-27 00:09:28      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:操作   ring   pat   ref   ade   mozilla   max   firefox   bar   

/** 
   * 设置下载文件中文件的名称 
   *  
   * @param filename 
   * @param request 
   * @return 
   */  
  public static String encodeFilename(String filename, HttpServletRequest request) {  
    /** 
     * 获取客户端浏览器和操作系统信息 
     * 在IE浏览器中得到的是:User-Agent=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon; Alexa Toolbar) 
     * 在Firefox中得到的是:User-Agent=Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.7.10) Gecko/20050717 Firefox/1.0.6 
     */  
    String agent = request.getHeader("USER-AGENT");  
    try {  
      if ((agent != null) && (-1 != agent.indexOf("MSIE"))) {  
        String newFileName = URLEncoder.encode(filename, "UTF-8");  
        newFileName = StringUtils.replace(newFileName, "+", "%20");  
        if (newFileName.length() > 150) {  
          newFileName = new String(filename.getBytes("GB2312"), "ISO8859-1");  
          newFileName = StringUtils.replace(newFileName, " ", "%20");  
        }  
        return newFileName;  
      }  
      if ((agent != null) && (-1 != agent.indexOf("Mozilla")))  
        return MimeUtility.encodeText(filename, "UTF-8", "B");  
  
      return filename;  
    } catch (Exception ex) {  
      return filename;  
    }  
  }  

 

设置文件下载时客户端显示的附件中文名

标签:操作   ring   pat   ref   ade   mozilla   max   firefox   bar   

原文地址:http://www.cnblogs.com/shen199103/p/7082726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!