gpt4 book ai didi

xml - 多个 XSLT 文件到 2 个不同 xml 文件的单个 XSLT 文件

转载 作者:数据小太阳 更新时间:2023-10-29 02:21:11 25 4
gpt4 key购买 nike

这是我的 xml 文件:

<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<EMail>pasteur.ford@yahoo.com</EMail>
</CONTACT>
<CONTACT>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
</CONTACT>
<CONTACT>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<EMail>chao.colombo@liberto.it</EMail>
</CONTACT>
</CONTACTS>

我使用下面的 XSLT 文件作为我的第一个 xml 输出版本。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>

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

<xsl:template match="CONTACT">
<xsl:copy>
<Customer-ID>
<xsl:value-of select="generate-id(.)"/>
</Customer-ID>
<xsl:copy-of select="FirstName|LastName|URL"/>
<Facebook-ID>
<xsl:choose>
<xsl:when test="URL">
<xsl:value-of select="substring-after(URL,'?id=')"/>
</xsl:when>
<xsl:otherwise>

</xsl:otherwise>
</xsl:choose>
</Facebook-ID>
<EMAILS>
<xsl:apply-templates select="EMail"/>
</EMAILS>
</xsl:copy>
</xsl:template>

<xsl:template match="EMail">
<EMail>
<Type><xsl:value-of select="substring-before(
substring-after(.,'@'),
'.')"/>
</Type>
<Value><xsl:value-of select="."/></Value>
</EMail>
</xsl:template>

</xsl:stylesheet>

我从上面的 XSLT 文件输出的第一个 xml 版本:

<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<Customer-ID>N65539</Customer-ID>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<EMAILS>
<EMail>
<Type>yahoo</Type>
<Value>pasteur.ford@yahoo.com</Value>
</EMail>
</EMAILS>
</CONTACT>
<CONTACT>
<Customer-ID>N65546</Customer-ID>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
<Facebook-ID>1000474277</Facebook-ID>
<EMAILS/>
</CONTACT>
<CONTACT>
<Customer-ID>N65553</Customer-ID>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<EMAILS>
<EMail>
<Type>liberto</Type>
<Value>chao.colombo@liberto.it</Value>
</EMail>
</EMAILS>
</CONTACT>
</CONTACTS>

这是我的第二个 XSLT 文件:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>

<xsl:template match="CONTACT">
<xsl:copy>
<Customer-ID>
<xsl:value-of select="Customer-ID"/>
</Customer-ID>

<FirstName>
<xsl:value-of select="FirstName"/>
</FirstName>

<LastName>
<xsl:value-of select="LastName"/>
</LastName>

<gmail>
<xsl:value-of select="EMAILS/EMail[Type='gmail']/Value"/>
</gmail>

<yahoo>
<xsl:value-of select="EMAILS/EMail[Type='yahoo']/Value"/>
</yahoo>

<liberto>
<xsl:value-of select="EMAILS/EMail[Type='liberto']/Value"/>
</liberto>

<URL>
<xsl:value-of select="URL"/>
</URL>

<Facebook-ID>
<xsl:value-of select="Facebook-ID"/>
</Facebook-ID>

</xsl:copy>
</xsl:template>

这是第二个 XSLT 文件的最终 xml 输出:

<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>

<CONTACT>
<Customer-ID>N65539</Customer-ID>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<gmail/>
<yahoo>pasteur.ford@yahoo.com</yahoo>
<liberto/>
<URL/>
<Facebook-ID/>
</CONTACT>

<CONTACT>
<Customer-ID>N65546</Customer-ID>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<gmail/>
<yahoo/>
<liberto/>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
<Facebook-ID>1000474277</Facebook-ID>
</CONTACT>

<CONTACT>
<Customer-ID>N65553</Customer-ID>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<gmail/>
<yahoo/>
<liberto>chao.colombo@liberto.it</liberto>
<URL/>
<Facebook-ID/>
</CONTACT>
</CONTACTS>

如何将这两个 XSLT 文件合并为一个 XSLT 文件以获得最终的 XML 输出。

我该如何处理?因为有两个相似类型的不同 xml 文件。

我正在使用 Eclipse Hellios 作为 -->XSL 转换来查看输出。

最佳答案

在 XSLT 应用程序中经常使用执行一系列转换,尽管在​​ XSLT 1.0 中完全执行此操作需要使用特定于供应商的 xxx:node-set()功能。在 XSLT 2.0 中不需要这样的扩展,因为臭名昭著的 RTF 数据类型在那里被消除了。

这里是一个例子(太简单了没有意义,但完整地说明了这是如何完成的):

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ext="http://exslt.org/common">
<xsl:output omit-xml-declaration="yes" indent="yes"/>

<xsl:template match="/">
<xsl:variable name="vrtfPass1">
<xsl:apply-templates select="/*/*"/>
</xsl:variable>

<xsl:variable name="vPass1"
select="ext:node-set($vrtfPass1)"/>

<xsl:apply-templates mode="pass2"
select="$vPass1/*"/>
</xsl:template>

<xsl:template match="num[. mod 2 = 1]">
<xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="num" mode="pass2">
<xsl:copy>
<xsl:value-of select=". *2"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

当此转换应用于以下 XML 文档时:

<nums>
<num>01</num>
<num>02</num>
<num>03</num>
<num>04</num>
<num>05</num>
<num>06</num>
<num>07</num>
<num>08</num>
<num>09</num>
<num>10</num>
</nums>

产生了想要的、正确的结果:

<num>2</num>
<num>6</num>
<num>10</num>
<num>14</num>
<num>18</num>

解释:

  1. 第一步转换 XML 文档,结果定义为变量值 $vrtfPass1 .这仅复制 num具有奇数值(不是偶数)的元素。

  2. $vrtfPass1 RTF 类型的变量不能直接用于 XPath 表达式,因此我们使用 EXSLT(由大多数 XSLT 1.0 处理器实现)函数 ext:node-set 将其转换为普通树。并定义另一个变量——$vPass1这棵树的值(value)。

  3. 我们现在在我们的转换链中执行第二个转换 -- 在第一个转换的结果上,它被保存为变量的值 $vPass1 .为了不弄乱第一遍模板,我们指定新处理应该在命名模式下,称为“pass2”。在这种模式下,任何 num 的值元素乘以二。

XSLT 2.0 解决方案(无 RTF):

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output omit-xml-declaration="yes" indent="yes"/>

<xsl:template match="/">
<xsl:variable name="vPass1" >
<xsl:apply-templates select="/*/*"/>
</xsl:variable>
<xsl:apply-templates mode="pass2"
select="$vPass1/*"/>
</xsl:template>

<xsl:template match="num[. mod 2 = 1]">
<xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="num" mode="pass2">
<xsl:copy>
<xsl:value-of select=". *2"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>

关于xml - 多个 XSLT 文件到 2 个不同 xml 文件的单个 XSLT 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6720009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com