java 导出文件编码问题

public static void exportToExcel(String uid, String name, String htmlText,
HttpServletRequest request, HttpServletResponse response) {
htmlText = htmlText.replaceFirst("<table>", "<tableFirst>");
htmlText = htmlText.replaceAll("<table>",
"<table cellpadding=\"3\" cellspacing=\"0\" border=\"1\" rull=\"all\"
style=\"border-collapse: collapse\">");
htmlText = htmlText.replaceFirst("<tableFirst>", "<table>");
try (OutputStream out = response.getOutputStream()) {
String fileName = name+ "_" + DateUtils.getNow("yyyyMMddHHmmss");
// fileName = new String(fileName.getBytes(),"utf-8")+ ".xls";
if ("large".equals(htmlText)) {
ReportingPo report = reportingService.getByUid(uid);
Map<String, Object> formParameters = generationService.getFormParameters(request.getParameterMap(),
report.getDataRange());
ReportTable reportTable = generationService.getReportTable(report, formParameters);
htmlText = reportTable.getHtmlText();
}
// response.reset();
response.addHeader("Content-Disposition", "attachment;filename=" +
new String(fileName.getBytes("utf-8"),"iso-8859-1")+ ".xls");
// response.setHeader("Content-Disposition", String.format("attachment; filename=%s", fileName));
response.setContentType("application/vnd.ms-excel; charset=utf-8");
response.setCharacterEncoding("utf-8");
response.addCookie(new Cookie("fileDownload", "true"));
// out.write(new byte[] { (byte) 0xEF, (byte) 0xBB, (byte) 0xBF }); // 生成带bom的utf8文件
out.write(htmlText.getBytes("utf-8"));
out.flush();
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}

注意这里两个编码:
new String(fileName.getBytes("utf-8"),"iso-8859-1")+ ".xls"
---------------------
作者:it_0101
来源:CSDN
原文:https://blog.csdn.net/it_0101/article/details/80430717
版权声明:本文为博主原创文章,转载请附上博文链接!

猜你喜欢

转载自www.cnblogs.com/yx10/p/11304249.html
今日推荐