spring 读取项目内docx文件

这段代码展示了如何使用Apache POI库从src/main/resources目录下的aaa.docx文件中读取内容。首先通过ResourceUtils获取File对象,然后创建FileInputStream和XWPFDocument对象,接着使用XWPFWordExtractor提取文本,最后关闭输入流。
try {
            File file = ResourceUtils.getFile("classpath:aaa.docx");
            FileInputStream fileInputStream = new FileInputStream(file);
            XWPFDocument xdoc = new XWPFDocument(fileInputStream);
            XWPFWordExtractor extractor = new XWPFWordExtractor(xdoc);
            String content = extractor.getText();
            fileInputStream.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

aaa.docx文件在src/main.resources目录下

<!-- poi -->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi</artifactId>
			<version>3.12</version>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.12</version>
		</dependency>
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-scratchpad</artifactId>
			<version>3.12</version>
		</dependency>
你可以使用Apache POI库来将Spring Boot文档转换为docx格式并输出为文件流。下面是一个示例代码: ```java import org.apache.poi.xwpf.usermodel.*; import org.springframework.core.io.InputStreamResource; import org.springframework.http.HttpHeaders; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import java.io.ByteArrayOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; @RestController public class DocxController { @GetMapping(value = "/docx", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE) public ResponseEntity<InputStreamResource> generateDocx() throws IOException { // 读取Spring Boot文档 FileInputStream inputStream = new FileInputStream("path/to/spring-boot-doc.doc"); XWPFDocument document = new XWPFDocument(inputStream); // 创建输出流 ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); // 写入docx内容 document.write(outputStream); outputStream.close(); // 设置响应头 HttpHeaders headers = new HttpHeaders(); headers.add("Content-Disposition", "attachment; filename=spring-boot-doc.docx"); // 返回文件流 return ResponseEntity .ok() .headers(headers) .contentType(MediaType.APPLICATION_OCTET_STREAM) .body(new InputStreamResource(new ByteArrayInputStream(outputStream.toByteArray()))); } public void saveDocx() throws IOException { // 读取Spring Boot文档 FileInputStream inputStream = new FileInputStream("path/to/spring-boot-doc.doc"); XWPFDocument document = new XWPFDocument(inputStream); // 创建输出流 FileOutputStream outputStream = new FileOutputStream("path/to/output.docx"); // 写入docx内容 document.write(outputStream); outputStream.close(); } } ``` 你可以将以上代码放入Spring Boot项目中的控制器中,并访问`/docx`路径来生成并下载docx文件,或者调用`saveDocx()`方法将docx文件保存到指定路径。 请将代码中的`path/to/spring-boot-doc.doc`替换为实际的Spring Boot文档路径,`path/to/output.docx`替换为你希望保存输出文件的路径。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值