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

poi导出excel名称中文乱码(对IE,chrome,Firefox有效)

时间:2016-09-05 16:54:47      阅读:384      评论:0      收藏:0      [点我收藏+]

标签:

// 判断浏览器类型,firefox浏览器做特殊处理,否则下载文件名乱码
	public static void compatibleFileName(HttpServletRequest request, HttpServletResponse response, String excelname) throws UnsupportedEncodingException {
		String agent = request.getHeader("USER-AGENT").toLowerCase();
		response.setContentType("application/vnd.ms-excel");
		String fileName = excelname;
		String codedFileName = java.net.URLEncoder.encode(fileName, "UTF-8");
		if (agent.contains("firefox")) {
			response.setCharacterEncoding("utf-8");
			response.setHeader("content-disposition", "attachment;filename=" + new String(fileName.getBytes(), "ISO8859-1") + ".xls");
		} else {
			response.setHeader("content-disposition", "attachment;filename=" + codedFileName + ".xls");
		}
	}

poi导出excel名称中文乱码(对IE,chrome,Firefox有效)

标签:

原文地址:http://www.cnblogs.com/k-iss/p/5842607.html

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