SpringBoot读取Word文档

SpringMVC或SpringBoot上传解析Word文档,我想直接用MultipartFile做解析。

因为之前导入Excel表格用的就是3.14版本,所以没有改。还有有可能不是这个依赖,可根据下一段import自行查找。。

docx文件可行,doc文件会报错


    org.apache.poi
    poi-ooxml
    3.14
import lombok.extern.slf4j.Slf4j;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import java.io.IOException;
import java.util.Iterator;

/**
 * @Author ZhenYang
 * @Date Created in 2018/2/7 9:50
 * @Description
 */
@RestController
@RequestMapping("/api/excel")
@Slf4j
public class ExcelController {

    @PostMapping("paper")
    public void mockPaper(@RequestParam("file") MultipartFile file) {
        try {
            XWPFDocument xwpfDocument = new XWPFDocument(file.getInputStream());
            XWPFParagraph para;
            Iterator iterator = xwpfDocument.getParagraphsIterator();
            while (iterator.hasNext()) {
                para = iterator.next();
                log.info("输出:{}", para.getText());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}


输出如下:


如果log输出遇到问题,就换成sout(syso)呗~

如果报错,可能是因为你打开方式不对~

更多操作,可移步官方文档:

http://poi.apache.org/apidocs/org/apache/poi/xwpf/usermodel/XWPFDocument.html


你可能感兴趣的:(SpringBoot)