2

我有一个使用 xinclude 访问其他几个 xml 文件的 xml 文档。

<chapter xml:id="chapter1">
<title>Chapter in Main Doc</title>
<section xml:id="section">
    <title>Section in Main Doc 1</title>
            <mediaobject>
                <imageobject>
                    <imagedata fileref="images/car.jpg"/>
                </imageobject>
            </mediaobject>
</section>
<xi:include href="../some-doc/section1.xml"/>
<xi:include href="../some-doc/section2.xml"/>

这些其他 section1 和 section2 xml 文件在不同的源位置使用不同的图像。我需要将所有图像复制到单个输出目录。因此,首先,我打算使用 XSLT 来解析整个 xml 文档并生成要复制的图像列表。如何使用 XSLT 生成 xml 文件的图像列表?你的想法真的很感激。

提前致谢..!!

添加:

我尝试使用以下已回答的 XSLT 1.0 代码。当我使用它生成 html 输出时,它只显示章节和章节 ID,如“chapter1, section ...”。它不显示图像数据节点内的图像路径值。

但是当我改变它时<xsl:template match="@*|node()"><xsl:template match="*">它也会显示 xincluded xml 文件的所有图像路径值。但是还有其他节点的值,如上所示。我需要过滤除图像路径以外的所有值。

在这里,我只需要复制所有 xml 文档的图像路径,并将所有路径保存在一个数组或类似的东西中。然后我可以使用 java 类将这些保存的图像路径用于图像处理。

4

1 回答 1

5

这不是一个完整的解决方案,但它可能足以满足您的需求。下面的 XSLT 2.0 样式表复制了一个文档,扩展了 XIncludes(注意事项如下)。

<xsl:stylesheet version="2.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  xmlns:fn="http://www.w3.org/2005/xpath-functions"
  exclude-result-prefixes='xsl xi fn'>
<xsl:output method="xml" indent="yes"/>

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

<xsl:template match="xi:include[@href][@parse='xml' or not(@parse)][fn:unparsed-text-available(@href)]">
 <xsl:apply-templates select="fn:document(@href)" />
</xsl:template>

<xsl:template match="xi:include[@href][@parse='text'][fn:unparsed-text-available(@href)]">
 <xsl:apply-templates select="fn:unparsed-text(@href,@encoding)" />
</xsl:template>

<xsl:template match="xi:include[@href][@parse=('text','xml') or not(@parse)][not(fn:unparsed-text-available(@href))][xi:fallback]">
 <xsl:apply-templates select="xi:fallback/text()" />
</xsl:template>

<xsl:template match="xi:include" />

</xsl:stylesheet> 

注意事项

此解决方案未实现以下属性:xpointer、accept 和 accept-language。

残缺的 XSLT 1.0 变体

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  exclude-result-prefixes='xsl xi'>
<xsl:output method="xml" indent="yes"/>

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

<xsl:template match="xi:include[@href][@parse='xml' or not(@parse)]">
 <xsl:apply-templates select="document(@href)" />
</xsl:template>

<xsl:template match="xi:include" />

</xsl:stylesheet> 
于 2012-07-16T00:05:11.453 回答