• Apache POI 解析 microsoft word 图片文字都不放过


    项目需要 ,写了个 ms word 解析器,贴出来分享!

    Apache POI 组件主要用来  解析 microsoft word,ppt,excel,Visio 文档 ,具体介绍看下面吧!

    Overview

    The following are components of the entire POI project and a brief summary of their purpose.

    POIFS for OLE 2 Documents

    POIFS is the oldest and most stable part of the project. It is our port of the OLE 2 Compound Document Format to pure Java. It supports both read and write functionality. All of our components ultimately rely on it by definition. Please see the POIFS project page for more information.

    HSSF for Excel Documents

    HSSF is our port of the Microsoft Excel 97(-2003) file format (BIFF8) to pure Java. It supports read and write capability. (Support for Excel 2007 .xlsx files is in progress). Please see the HSSF project page for more information.

    HWPF for Word Documents

    HWPF is our port of the Microsoft Word 97 file format to pure Java. It supports read, and limited write capabilities. Please see the HWPF project page for more information. This component is in the early stages of development. It can already read and write simple files.

    Presently we are looking for a contributor to foster the HWPF development. Jump in!

    HSLF for PowerPoint Documents

    HSLF is our port of the Microsoft PowerPoint 97(-2003) file format to pure Java. It supports read and write capabilities. Please see the HSLF project page for more information.

    HDGF for Visio Documents

    HDGF is our port of the Microsoft Viso 97(-2003) file format to pure Java. It currently only supports reading at a very low level, and simple text extraction. Please see the HDGF project page for more information.

    HPSF for Document Properties

    HPSF is our port of the OLE 2 property set format to pure Java. Property sets are mostly use to store a document's properties (title, author, date of last modification etc.), but they can be used for application-specific purposes as well.

    HPSF supports reading and writing of properties. However, you will need to be using version 3.0 of POI to utilise the write support.

    Please see the HPSF project page for more information.

    package org.osforce.document.extractor;

    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;

    import org.apache.poi.hwpf.HWPFDocument;
    import org.apache.poi.hwpf.model.PicturesTable;
    import org.apache.poi.hwpf.usermodel.CharacterRun;
    import org.apache.poi.hwpf.usermodel.Paragraph;
    import org.apache.poi.hwpf.usermodel.Picture;
    import org.apache.poi.hwpf.usermodel.Range;

    /**
    *
    * @author huhaozhong
    * @version 1.0 date 2008.7.27
    * microsoft word document extractor extract text and picture
    */

    public class MSWordExtractor {

        private HWPFDocument msWord;

        /**
         *
         * @param input
         *            InputStream from file system which has word document stream
         * @throws IOException
         */
        public MSWordExtractor(InputStream input) throws IOException {

            msWord = new HWPFDocument(input);
        }
        /**
         *
         * @return all paragraphs of text
         */
        public String[] extractParagraphTexts() {

            Range range = msWord.getRange();

            int numParagraph = range.numParagraphs();

            String[] paragraphs = new String[numParagraph];

            for (int i = 0; i < numParagraph; i++) {

                Paragraph p = range.getParagraph(i);

                paragraphs = new String(p.text());
            }

            return paragraphs;
        }
        /**
         *
         * @return all text of a word
         */
        public String extractMSWordText() {

            Range range = msWord.getRange();

            String msWordText = range.text();

            return msWordText;
        }
        /**
         *
         * @param directory
         *            local file directory that store the images
         * @throws IOException
         */
        public void extractImagesIntoDirectory(String directory) throws IOException {

            PicturesTable pTable = msWord.getPicturesTable();

            int numCharacterRuns = msWord.getRange().numCharacterRuns();

            for (int i = 0; i < numCharacterRuns; i++) {

                CharacterRun characterRun = msWord.getRange().getCharacterRun(i);

                if (pTable.hasPicture(characterRun)) {

                    System.out.println("have picture!");

                    Picture pic = pTable.extractPicture(characterRun, false);

                    String fileName = pic.suggestFullFileName();

                    OutputStream out = new FileOutputStream(new File(directory
                            + File.separator + fileName));

                    pic.writeImageContent(out);
                }
            }
        }
    }


    代码比较简单,而且在代码中也做了简单的注释,详细就不介绍了!
  • 相关阅读:
    《精通C#》委托与事件(10章)
    正则
    h5的formData 上传文件及.net后台
    img显示文件对象
    用div 画出三角形
    父元素有border-radius时,overflow 失效
    HTML标签文本内容正常显示而不被解析
    css 从简单到复杂的动态效果,你值得拥有
    在$.post()函数外 使用$.post()返回函数的数据
    jquery工作积累
  • 原文地址:https://www.cnblogs.com/monica/p/1603381.html
Copyright © 2020-2023  润新知