Java Word解析

maven 依赖:
        
       
       
            org.apache.poi
            poi
            4.0.0
       

       
       
            org.apache.poi
            poi-ooxml
            4.0.0
       

       
       
            org.apache.poi
            poi-scratchpad
            4.0.0
       

        
demo:
        try (InputStream is = new InputStream(new File(""))) {
            if (DOC.equalsIgnoreCase(fileType)) {
                HWPFDocument document = new HWPFDocument(is);
                StringBuilder text = document.getText();
                return text.toString();
            } else if (DOCX.equalsIgnoreCase(fileType)) {
                XWPFDocument document = new XWPFDocument(is);
                XWPFWordExtractor in = new XWPFWordExtractor(document);
                String text = in.getText();
                return text;
            }
        } catch (Exception e) {
            throw new RuntimeException(e);
        }

你可能感兴趣的:(java,word,java)