将 ODT 转换为单个 XML 文件
我知道标准定义了 ODT 文件的两个版本: - 一个是不同文件的存档,即meta.xml、content.xml等, - 第二个是一个包含所有数据的大 XML 文件。 (我从上面知道 http://en.wikipedia.org/wiki/OpenDocument_technical_specification#Document_Representation)
后一个版本更适合处理,但不幸的是不是 OpenOffice 生产的。
问题是: 您是否知道任何过滤器、转换器或任何可以帮助我将存档版本中的 ODT 文件转换为单个 XML 文件的东西?最好的是 Java 类。
I know that standards define two versions of ODT file:
- one is a archive of different files, i.e. meta.xml, content.xml etc,
- second is one big XML file with all the data.
(I know above from http://en.wikipedia.org/wiki/OpenDocument_technical_specification#Document_Representation)
The latter version is better for processing, but unfortunately is not produced by OpenOffice.
The question is:
Do you know any filter, converter, or anything what would help me transform ODT file in archive version into single XML file? The best would be a Java class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Open Office 和 Libre Office 都可以生成“one big XML”格式的 ODT 文件。它们被称为“平面 ODT”文件。
打开 ODT 文件并使用“另存为...”。从那里您可以将文件格式更改为“Flat ODT”。
Both Open Office and Libre Office does can produce ODT files in the "one big XML" format. They are called "Flat ODT" files.
Open an ODT file and use "Save as…". From there you can change the file format to "Flat ODT".
我通过生成 XSLT 样式表解决了这个问题,该样式表将 ODT 源文件转换为一个“或多或少”与标准兼容的 XML 文件。下面是代码。
I solved the case by producing XSLT stylesheet that transforms ODT source files into one XML file "more or less" compatible with the standard. Below is the code.