We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
linux服务器上,多用户生成excel文件
ClassPathResource templateFile = new ClassPathResource("file/template/RepoBBInsTemplate.xlsx"); InputStream templateFileInputStream = templateFile.getInputStream(); response.setContentType("application/x-msdownload"); response.setCharacterEncoding("UTF-8"); response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(excelFileName, StandardCharsets.UTF_8)); EasyExcel.write(response.getOutputStream(), ExportRepoBBInsEntity.class) .withTemplate(templateFileInputStream).sheet().head(Lists.newArrayList()) .doWrite(exportRepoBBInsEntities);
和issue#813遇到的异常是一样的,issue#813已修复这个问题,是否需要配置额外属性。
The text was updated successfully, but these errors were encountered:
zhuangjiaju
No branches or pull requests
触发场景描述
linux服务器上,多用户生成excel文件
触发Bug的代码
提示的异常或者没有达到的效果
和issue#813遇到的异常是一样的,issue#813已修复这个问题,是否需要配置额外属性。
The text was updated successfully, but these errors were encountered: