解决附件下载中文名问题(Tomcat)

response.setContentType("application/octet-stream");
if (isIE) {
	// 1、IE不支持filename的RFC2047编码,你只有用GBK输出,才能让你的IE正常显示中文
	// 2、你可以用URL.encode来对filename编码,这样你用IE下载时打开的文件名是正常的,
	//  这种办法无法解决你选择直接打开附件而不是“保存”时,应用程序标题栏的乱码问题。
	// 3、缺省情况下,tomcat以ISO-8859-1输出header 
	name = new String(name.getBytes("GBK"), "ISO-8859-1");
}else{
	// 对于非IE的agent,采用RFC2047编码,这样浏览器可以自动识别文件名字符集
	name = "=?UTF-8?B?" + new String(Base64.encode(name.getBytes("UTF-8")))  + "?=";
}
response.addHeader("Content-Disposition", "attachment; filename=\""  + name + "\"");

 

你可能感兴趣的:(tomcat,浏览器,IE,Ruby)