0

在这里 ,我们看到“HWPF”(MS Word 2000 .doc)文件的 Apache POI 有一个方法 CharacterRun.getStyleIndex()... 通过它你可以识别字符样式(不是段落样式)适用于本次运行...

但是对于XWPF的东西(MS Word 2003+ .docx)文件,我找不到任何方法来识别 XWPFRun 对象中的字符样式。

4

1 回答 1

1

以下代码应从 中的所有运行[1] 中获取所有样式,XWPFDocument如果它们被应用为字符样式,则打印它们的 XML:

import java.io.FileInputStream;

import org.apache.poi.xwpf.usermodel.*;

import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTRPr;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STStyleType;

import java.util.List;

public class WordGetRunStyles {

 public static void main(String[] args) throws Exception {

  FileInputStream fis = new FileInputStream("This is a Test.docx");
  XWPFDocument xdoc = new XWPFDocument(fis);

  List<XWPFParagraph> paragraphs = xdoc.getParagraphs();
  for (XWPFParagraph paragraph : paragraphs) {
   List<XWPFRun> runs = paragraph.getRuns();
   for (XWPFRun run : runs) {
    CTRPr cTRPr = run.getCTR().getRPr();
    if (cTRPr != null) {
     if (cTRPr.getRStyle() != null) {
      String styleID = cTRPr.getRStyle().getVal();
      System.out.println("Style ID=====================================================");
      System.out.println(styleID);
      System.out.println("=============================================================");
      XWPFStyle xStyle = xdoc.getStyles().getStyle(styleID);
      if (xStyle.getType() == STStyleType.CHARACTER) {
       System.out.println(xStyle.getCTStyle());
      }
     }
    }
   }
  }
 }
}

[1] 请不要尝试内容太多的文档;-)。

正如@mike rodent 的评论中提到的,如果你得到了,那么你必须使用https://poi.apache.org/faq.html#faq-N10025java.lang.NoClassDefFoundError: org/openxmlformats/schemas/*something*中提到的完整的 ooxml-schemas-1.3.jar 。

对我来说,这段代码在没有这个的情况下运行,因为我不使用Phonetic Guide Propertieshttps://msdn.microsoft.com/en-us/library/office/documentformat.openxml.wordprocessing.rubyproperties.aspx)。我使用 Office 2007。

于 2016-02-07T14:26:07.540 回答