Java+POI+POI-tl模板工具包结合生成Word文档

Java+POI+POI-tl模板工具包结合生成Word文档,第1张

Java+POI+POI-tl模板工具包结合生成Word文档

Java+POI+POI-tl模板工具包结合生成Word文档。

String fileEdocTemplate = "D:\uploadfiles\word2pdf\"+formId+".docx";
//创建临时文件夹
String tempDirPath = fromPdfPath + File.separator + dataId+formId;
File tempDirFile = new File(tempDirPath);
boolean mkdir = tempDirFile.mkdir();
//输出的表单Word地址
String fileOut = tempDirPath+File.separator +"formWord.doc";
XWPFTemplate template = XWPFTemplate.compile(fileEdocTemplate).render(map);
FileOutputStream out;
	try {
		out = new FileOutputStream(fileOut);
		template.write(out);
		out.flush();
		out.close();
		template.close();
	} catch (FileNotFoundException e) {
		e.printStackTrace();
	} catch (IOException e) {
		e.printStackTrace();
	}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5703655.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存