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

POI_excel下载_中文名_浏览器兼容解决

时间:2016-08-10 18:56:42      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

private void downfile(HSSFWorkbook wb,String ua,String fileName,HttpServletResponse response)
throws IOException {
String agent = ua;//request.getHeader("user-agent");
if(agent.contains("Firefox")){ // 火狐浏览器
fileName = "=?UTF-8?B?"+new BASE64Encoder().encode(fileName.getBytes("utf-8"))+"?=";
}else{ // IE及其他浏览器
fileName = URLEncoder.encode(fileName,"utf-8");
}
response.setHeader("content-disposition", "attachment;filename=" + fileName + ".xls");
OutputStream fos = response.getOutputStream();
wb.write(fos);
fos.close();
}

POI_excel下载_中文名_浏览器兼容解决

标签:

原文地址:http://www.cnblogs.com/kingsniper13/p/5757725.html

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