将 ODT 转换为单个 XML 文件

发布于 2024-12-07 00:08:22 字数 431 浏览 1 评论 0原文

我知道标准定义了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

十六岁半 2024-12-14 00:08:22

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".

荒人说梦 2024-12-14 00:08:22

我通过生成 XSLT 样式表解决了这个问题,该样式表将 ODT 源文件转换为一个“或多或少”与标准兼容的 XML 文件。下面是代码。

<?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0">

        <xsl:param name="meta.file" select="'meta.xml'" /> 

        <xsl:template match="@*|node()">
            <xsl:copy>
                <xsl:apply-templates select="@*|node()" />
            </xsl:copy>
        </xsl:template>

        <xsl:template match="office:document-content">
            <office:document>
                <xsl:copy-of select="@*" />
                <xsl:variable name="meta" select="document($meta.file)/office:document-meta/office:meta" />
                <xsl:copy-of select="$meta" />
                <xsl:apply-templates />
            </office:document>
        </xsl:template>

    </xsl:stylesheet>

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.

<?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0">

        <xsl:param name="meta.file" select="'meta.xml'" /> 

        <xsl:template match="@*|node()">
            <xsl:copy>
                <xsl:apply-templates select="@*|node()" />
            </xsl:copy>
        </xsl:template>

        <xsl:template match="office:document-content">
            <office:document>
                <xsl:copy-of select="@*" />
                <xsl:variable name="meta" select="document($meta.file)/office:document-meta/office:meta" />
                <xsl:copy-of select="$meta" />
                <xsl:apply-templates />
            </office:document>
        </xsl:template>

    </xsl:stylesheet>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文