xwpftemplate 获取inputsteam
时间: 2023-09-13 18:02:27 浏览: 233
INPUTSTREAM
要使用 xwpftemplate 获取 InputStream,需要先导入以下依赖:
```xml
<dependency>
<groupId>fr.opensagres.xdocreport</groupId>
<artifactId>org.apache.poi.xwpf.converter.core</artifactId>
<version>2.0.1</version>
</dependency>
```
然后可以使用以下代码获取 InputStream:
```java
InputStream inputStream = new FileInputStream(new File("path/to/template.docx"));
IXDocReport report = XDocReportRegistry.getRegistry().loadReport(inputStream, TemplateEngineKind.Freemarker);
```
其中,`path/to/template.docx` 是模板文件的路径。获取到 InputStream 后,可以将其传递给 xwpftemplate 的 `DocxTemplate` 类的构造函数,用于创建模板实例。
阅读全文