首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

上载时直接导出中文名称的方法

2012-12-28 
下载时直接导出中文名称的方法///可以输入中文名称的方法public static String encodeFilename(String fil

下载时直接导出中文名称的方法
///可以输入中文名称的方法
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 = org.apache.tools.ant.util.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;  
    }  
  }

热点排行