1

我正在尝试使用 poi-scratchpad-3.8 (HWPF) 阅读 Microsoft Word 2003 文档 (.doc)。我需要逐字读取文件,或者逐字符读取文件。无论哪种方式都可以满足我的需要。一旦我阅读了一个字符或单词,我需要获取应用于单词/字符的样式名称。那么,问题来了,如何在读取 .doc 文件时获取用于单词或字符的样式名称?

编辑

我正在添加我用来尝试此操作的代码。如果有人想尝试这个,祝你好运。

private void processDoc(String path) throws Exception {
    System.out.println(path);
    POIFSFileSystem fis = new POIFSFileSystem(new FileInputStream(path));
    HWPFDocument wdDoc = new HWPFDocument(fis);

    // list all style names and indexes in stylesheet
    for (int j = 0; j < wdDoc.getStyleSheet().numStyles(); j++) {
        if (wdDoc.getStyleSheet().getStyleDescription(j) != null) {
            System.out.println(j + ": " + wdDoc.getStyleSheet().getStyleDescription(j).getName());
        } else {
            // getStyleDescription returned null
            System.out.println(j + ": " + null);
        }
    }

    // set range for entire document
    Range range = wdDoc.getRange();

    // loop through all paragraphs in range
    for (int i = 0; i < range.numParagraphs(); i++) {
        Paragraph p = range.getParagraph(i);

        // check if style index is greater than total number of styles
        if (wdDoc.getStyleSheet().numStyles() > p.getStyleIndex()) {
            System.out.println(wdDoc.getStyleSheet().numStyles() + " -> " + p.getStyleIndex());
            StyleDescription style = wdDoc.getStyleSheet().getStyleDescription(p.getStyleIndex());
            String styleName = style.getName();
            // write style name and associated text
            System.out.println(styleName + " -> " + p.text());
        } else {
            System.out.println("\n" + wdDoc.getStyleSheet().numStyles() + " ----> " + p.getStyleIndex());
        }
    }
4

1 回答 1

2

我建议您查看来自 Apache Tika 的 WordExtractor的源代码,因为它是使用 Apache POI 从 Word 文档中获取文本和样式的一个很好的示例

根据您在问题中所做和未说的内容,我怀疑您正在寻找类似这样的内容:

    Range r = document.getRange();
    for(int i=0; i<r.numParagraphs(); i++) {
       Paragraph p = r.getParagraph(i);
       String text = p.getText();
       if( ! text.contains("What I'm Looking For")) {
          // Try the next paragraph
          continue;
       }

       if (document.getStyleSheet().numStyles()>p.getStyleIndex()) {
          StyleDescription style =
               document.getStyleSheet().getStyleDescription(p.getStyleIndex());
          String styleName = style.getName();
          System.out.println(styleName + " -> " + text);
       }
       else {
          // Text has an unknown or invalid style
       }
    }

对于更高级的东西,看看 WordExtractor 源代码,看看你还能用这种东西做什么!

于 2012-10-05T23:14:49.343 回答