美文网首页
springboot2 生成excel文件

springboot2 生成excel文件

作者: 阿炼_b282 | 来源:发表于2021-08-25 20:00 被阅读0次

如果生成文件放在磁盘上面,会发现,这个文件一直删除不了。
所以变换一下思路,改为直接生成文件在内存中。这样比较合理。

            FileItem fileItem = new DiskFileItemFactory().createItem("fileupload", MediaType.ALL_VALUE, true, originalFilename);
            os = fileItem.getOutputStream();
            workBook.write(os);
            workBook.close();
            MultipartFile multipartFile = new CommonsMultipartFile(fileItem);
            fileItem.delete();

相关文章

网友评论

      本文标题:springboot2 生成excel文件

      本文链接:https://www.haomeiwen.com/subject/dsyeiltx.html