1.我们把需要下载的的excel 模板放在resource下面,模板要什么样子自己修改excel就好 1.接下来我们读取需要下载的excel模板就好 String fileName="test";ClassPathResource classPathResource = new ClassPathR ...
分类:
编程语言 时间:
2020-06-22 15:23:41
阅读次数:
313
excel文件的导入导出是很常见的功能,这次做了个下载的功能,踩了一些坑,记下来避免以后重复踩…… 1、inputstream序列化问题 Could not write JSON document: No serializer found for class java.io.FileDescript ...
分类:
编程语言 时间:
2018-09-26 00:14:45
阅读次数:
178
@RequestMapping(value="ddd.do")publicvoidddd(HttpServletResponseresponse){try{List<AsWp>list=asWpService.findAll();HSSFWorkbookwb=export(list);response.setContentType("application/vnd.ms-excel");response.setHeader("Content-disposition","p_w_upload;fil..
分类:
编程语言 时间:
2014-08-24 10:22:22
阅读次数:
213