我目前正在使用这个很棒的工具 Jacob,但我得到了一些非常奇怪的东西。阅读一个 MS Word 文件,我对文档进行标记,并且对于我得到的每个标记,我还想拥有页码和行号。奇怪的是,它只有在我自己启动 MSWord 并从 Jacob 那里获取实例时才有效。如果 Java 启动一个新实例,我无法获得这些信息。另一点是我从文件中获得了很多信息,效果很好,所以似乎唯一的麻烦是处理 Information 属性。
我的部分代码是:
ActiveXComponent myApplication = ActiveXComponent.connectToActiveInstance("Word.Application");
if (myApplication == null) {
myApplication = new ActiveXComponent("Word.Application");
}
Dispatch myDocuments = myApplication.getProperty("Documents").toDispatch();
Dispatch myDocument = getOpenedDocument(myDocuments, pFilePath);
……
Dispatch myParagraphs = Dispatch.call(myDocument, "Paragraphs");
Dispatch myParagraph = Dispatch.call(myParagraphs, "Item", new Variant(1)).toDispatch();
Dispatch myParagraphRange = Dispatch.get(myParagraph, "Range").toDispatch();
然后例如当我尝试时:
myText = Dispatch.get(myParagraphRange, "Text").toString();
我得到段落内容。但随着:
int myPageNumber = Dispatch.call(myParagraphRange, "Information", 3).getInt();
如果且仅当 MSWord 不是由我自己启动时,我会得到:
com.jacob.com.ComFailException: A COM exception has been encountered:
At Invoke of: Information
Description: Le serveur a généré une exception.
似乎“信息”属性与 Word 有问题???