首页
关于
留言
归档
更多
邻居
Search
1
宝塔面板出现乱码
7,132 阅读
2
文言一心登录网址(百度文心一言官方网站)
5,545 阅读
3
小浣熊CMS5.0漫画系统安装教程和采集教程
4,438 阅读
4
vfed 大橙子模板使用教程
3,854 阅读
5
YGbook 搭建完首页 不显示小说
3,006 阅读
技术文章
网站源码
网站模板
资源分享
主机测评
登录
Search
标签搜索
苹果
Nginx
搜狗图床
小浣熊CMS
面板
狂雨cms采集规则
Ubuntu
Mysql8.0
百度文库
Java
word导出
jeecg-boot
苹果cms
excel 样式
美团对接
文言一心
阿里
北栀
累计撰写
46
篇文章
累计收到
15
条评论
首页
栏目
技术文章
网站源码
网站模板
资源分享
主机测评
页面
关于
留言
归档
邻居
搜索到
1
篇与
的结果
2022-03-17
jeecg-boot word导出 导出下载 模板导出
jeecd-boot 导出word JEECG Word模板导出教程功能目标:读取word模板,解析数据导出word,对数据赋值代码: pom.xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <nonFilteredFileExtensions> <nonFilteredFileExtension>woff</nonFilteredFileExtension> <nonFilteredFileExtension>woff2</nonFilteredFileExtension> <nonFilteredFileExtension>eot</nonFilteredFileExtension> <nonFilteredFileExtension>ttf</nonFilteredFileExtension> <nonFilteredFileExtension>svg</nonFilteredFileExtension> <nonFilteredFileExtension>docx</nonFilteredFileExtension> </nonFilteredFileExtensions> </configuration> </plugin> public void simpleWordExport(HttpServletResponse response) { Map<String, Object> map = new HashMap<>(); map.put("title", "标题"); map.put("content", "内容"); map.put("year", 1); map.put("month", 2); map.put("name","名称"); map.put("day", "10"); try { // 导出下载 //templates/word.docx 模板路径 XWPFDocument doc = WordExportUtil.exportWord07( "templates/word.docx", map); response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document;chartset=utf-8"); response.setHeader("Content-Disposition", "attachment;filename="+ URLEncoder.encode("1", "UTF8") + ".docx"); ServletOutputStream out=response.getOutputStream(); doc.write(out); out.flush(); out.close(); // 导出本地 // FileOutputStream fos = new FileOutputStream("D:/360/simple.docx"); // doc.write(fos); // fos.close(); } catch (Exception e) { e.printStackTrace(); } } 浏览器本地模板word.zip
2022年03月17日
983 阅读
0 评论
0 点赞