您的位置:首页 > 其它

FF与IE,下载提示框文件名乱码问题解决

2014-05-16 16:09 405 查看

Java: IE & Firefox下载文件中文乱码的兼容代码

需要使用两种不同编码方式来处理,在Firefox 3.6和IE 8下测试通过:

String agent = request.getHeader("User-Agent");

boolean isMSIE = (agent != null &&agent.indexOf("MSIE") != -1);

if (isMSIE) {

fileName =URLEncoder.encode(fileName, "UTF-8");

} else {

fileName =new String(fileName.getBytes("UTF-8"), "ISO-8859-1");

}

response.setHeader("Content-Disposition", "attachment; filename=" +fileName);

java 下载乱码的解决方案

原来处理下载的代码如下:

response.setHeader("Content-Disposition", "attachment; filename=" + java.net.URLEncoder.encode(fileName, "UTF-8"));

下载的程序里有了这句,一般在IE6的下载提示框上将正确显示文件的名字,无论是简体中文,还是日文。

一. 上面方式,也就是先用URLEncoder编码,当中文文字超过17个时,IE6 无法下载文件。

这是IE的bug,参见微软的知识库文章 KB816868 。

原因可能是因为ie在处理 Response Header 的时候,对header的长度限制在150字节左右。

而一个汉字编码成UTF-8是9个字节,那么17个字便是153个字节,所以便会报错。

微软提供了一个补丁。这个补丁需要先安装ie6 sp1。

二. 我尝试使用 javamail 的MimeUtility.encode()方法来编码文件名,也就是编码成 =?gb2312?B?xxxxxxxx?= 这样的形式,

并从 RFC1522 中找到对应的标准支持。不过很遗憾,IE6并不支持这一个标准。

我试了一下,Firefox是支持的。

三. 按网上很多人提供的解决方案:将文件名编码成ISO8859-1似乎是有效的解决方案,代码如下:

response.setHeader( "Content-Disposition", "attachment;filename="+new String(fileName.getBytes("gb2312"), "ISO8859-1" ) );

在确保附件文件名都是简体中文字的情况下,那么这个办法确实是最有效的,不用让客户逐个的升级IE。

如果台湾同胞用,把gb2312改成big5就行。但现在的系统通常都加入了国际化的支持,普遍使用UTF-8。

如果文件名中又有简体中文字,又有繁体中文,还有日文。那么乱码便产生了。

另外,在我的电脑上Firefox (v1.0-en)下载也是乱码。

折中考虑,我结合了一、三的方式,代码片断如下:

String fileName = URLEncoder.encode(atta.getFileName(), "UTF-8");

/*

* see http://support.microsoft.com/default.aspx?kbid=816868
*/

if (fileName.length() > 150) {

String guessCharset = xxxx /*根据request的locale 得出可能的编码,中文操作系统通常是gb2312*/

fileName = new String(atta.getFileName().getBytes(guessCharset), "ISO8859-1");

}

response.setHeader("Content-Disposition", "attachment; filename=" + fileName);

暂且不考虑 Firefox。

/////////////////////

下面是解决文件名空格问题

String fileName = StringUtils.trim(file.getName());

String formatFileName = encodingFileName(name);//在后面定义方法encodingFileName(String fileName);

response.setHeader("Content-Disposition", "attachment; filename=" + formatFileName );

//处理文件名中出现的空格

//其中%20是空格在UTF-8下的编码

public static String encodingFileName(String fileName) {

String returnFileName = "";

try {

returnFileName = URLEncoder.encode(fileName, "UTF-8");

returnFileName = StringUtils.replace(returnFileName, "+", "%20");

if (returnFileName.length() > 150) {

returnFileName = new String(fileName.getBytes("GB2312"), "ISO8859-1");

returnFileName = StringUtils.replace(returnFileName, " ", "%20");

}

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

if (log.isWarnEnabled()) {

log.info("Don't support this encoding ...");

}

}

return returnFileName;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: