/**
* 下载文件时的文件名编码问题
* @param userAgent 浏览器识别用
* @param name
* @return
* @throws UnsupportedEncodingException
*/
private String encodeFileName(String userAgent, String name) throws UnsupportedEncodingException{
userAgent = userAgent==null ? "msie" : userAgent.toLowerCase();
if (userAgent.indexOf("msie") != -1) { // IE浏览器,只能采用URLEncoder编码
// encode会将+号encode成%2B,空格encode成+号,但是浏览器不会自动将+号decode成空格
name = URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20");//编码,恢复空格
return "filename=\"" + name + "\"";
}
if (userAgent.indexOf("mozilla") != -1) { // FireFox浏览器,可以使用MimeUtility或filename*或ISO编码的中文输出
name = URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20");//编码,处理空格
return "filename*=UTF-8''" + name;
}
if (userAgent.indexOf("applewebkit") != -1) { // Chrome浏览器,只能采用MimeUtility编码或ISO编码的中文输出
return "filename=\"" + new String(name.getBytes(), "ISO8859-1") + "\"";
}
if (userAgent.indexOf("safari") != -1) { // Safari浏览器,只能采用ISO编码的中文输出
return "filename=\"" + new String(name.getBytes(), "ISO8859-1") + "\"";
}
if (userAgent.indexOf("opera") != -1) { // Opera浏览器只能采用filename*
name = URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20");//编码,处理空格
return "filename*=UTF-8''" + name;
}
// 默认使用IE的方式进行编码,因为毕竟IE还是占多数的
return "filename=\"" + URLEncoder.encode(name, "UTF-8").replaceAll("\\+", "%20") + "\"";
}