Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最好使用 ODFDOM API。如果可能的话,我想将整个文件的内容放在一个字符串中。如果不是,您将如何在文件中搜索特定的子字符串?
提前致谢。
您将需要加载 odt 文档,然后获取内容根目录。从那里,获取将返回一个字符串的文本内容。那么这应该让您了解如何使用字符串进行搜索?例如:
TextDocument document = TextDocument.loadDocument("test.odt"); String texts = document.getContentRoot().getTextContent());