我需要查找重复的和空的节点,而不是从XML中删除它们,因此我编写了下面的XSL,并且能够通过读取XML获得空节点列表。但我不能得到的结果,如果重复节点存在。我需要你的帮助。
下面是输入XML:
<p:Organisation xmlns:p="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd HeaderRecords.xsd ">
<p:EMP>
<p:ID>123</p:ID>
<p:Name>uday</p:Name>
<p:Designation>SoftwareEng</p:Designation>
<p:ExpertiseIn>SOA,OSB,TIBCO</p:ExpertiseIn>
</p:EMP>
<p:ASSETS>
<p:ASSET>
<p:AssetID>1000</p:AssetID>
<p:Name>Ego</p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2005</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>2000</p:AssetID>
<p:Name>HP</p:Name>
<p:InUse></p:InUse>
<p:AssignedDate>2002</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>3000</p:AssetID>
<p:Name>Dell</p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2010</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>4000</p:AssetID>
<p:Name></p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2009</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>3000</p:AssetID>
<p:Name>Lenovo</p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2011</p:AssignedDate>
</p:ASSET>
</p:ASSETS>
</p:Organisation>
和下面是我得到的当前输出,如果我看到任何空节点:
InUse in Line- 2 with Position-3 is empty
Name in Line- 4 with Position-2 is empty
下面的是预期的输出:
InUse in Line- 2 with Position-3 is empty
Name in Line- 4 with Position-2 is empty
Found Duplicate Asset ID's
下面是我使用过的XSLT,它能够得到直到空节点列表:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:p="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd">
<xsl:output omit-xml-declaration="yes" />
<xsl:template match="/">
<xsl:apply-templates mode="rule1"
select="p:Organisation/p:EMP/p:ID">
</xsl:apply-templates>
<xsl:apply-templates mode="rule2"
select="p:Organisation/p:EMP/p:Name">
</xsl:apply-templates>
<xsl:apply-templates mode="rule3"
select="p:Organisation/p:EMP/p:Designation">
</xsl:apply-templates>
<xsl:apply-templates mode="rule4"
select="p:Organisation/p:EMP/p:ExpertiseIn">
</xsl:apply-templates>
<xsl:apply-templates mode="rule5"
select="p:Organisation/p:ASSETS">
</xsl:apply-templates>
</xsl:template>
<!-- Employee data Validation -->
<xsl:template match="p:ID" mode="rule1">
<xsl:if test="current() = ''">
Employee ID is empty.
</xsl:if>
</xsl:template>
<xsl:template match="p:Name" mode="rule2">
<xsl:if test="current() = ''">
Employee Name is empty.
</xsl:if>
</xsl:template>
<xsl:template match="p:Designation" mode="rule3">
<xsl:if test="current() = ''">
Employee Designation is empty.
</xsl:if>
</xsl:template>
<xsl:template match="p:ExpertiseIn" mode="rule4">
<xsl:if test="current() = ''">
ExpertiseIn data can't be empty.
</xsl:if>
</xsl:template>
<!-- Assets data Validation -->
<xsl:template match="p:ASSETS/*" mode='rule5'>
<xsl:variable name="i" select="count(preceding-sibling::*)+1" />
<xsl:for-each select="child::*">
<xsl:if test="current() = '' ">
<xsl:value-of select="local-name()" /> in Line- <xsl:value-of select="$i" /> with Position-<xsl:value-of select="count(preceding-sibling::*)+1" /> is empty
</xsl:if>
</xsl:for-each>
</xsl:template>
请帮助我找到重复的节点。
谢谢你的帮助。
这个简短而简单的转换生成一个空格分隔的列表,其中包含所有具有重复值的p:AssetID
元素:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:p="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd">
<xsl:output method="text"/>
<xsl:key name="kAsseIdByVal" match="p:AssetID" use="."/>
<xsl:template match="p:AssetID[generate-id()=generate-id(key('kAsseIdByVal', .)[2])]">
<xsl:value-of select="concat(., ' ')"/>
</xsl:template>
<xsl:template match="text()"/>
</xsl:stylesheet>
当应用于这个XML文档时(提供的一个+一个pAsset
元素具有多一组重复值):
<p:Organisation xmlns:p="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd HeaderRecords.xsd ">
<p:EMP>
<p:ID>123</p:ID>
<p:Name>uday</p:Name>
<p:Designation>SoftwareEng</p:Designation>
<p:ExpertiseIn>SOA,OSB,TIBCO</p:ExpertiseIn>
</p:EMP>
<p:ASSETS>
<p:ASSET>
<p:AssetID>1000</p:AssetID>
<p:Name>Ego</p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2005</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>2000</p:AssetID>
<p:Name>HP</p:Name>
<p:InUse></p:InUse>
<p:AssignedDate>2002</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>3000</p:AssetID>
<p:Name>Dell</p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2010</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>4000</p:AssetID>
<p:Name></p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2009</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>3000</p:AssetID>
<p:Name>Lenovo</p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2011</p:AssignedDate>
</p:ASSET>
<p:ASSET>
<p:AssetID>4000</p:AssetID>
<p:Name></p:Name>
<p:InUse>yes</p:InUse>
<p:AssignedDate>2009</p:AssignedDate>
</p:ASSET>
</p:ASSETS>
</p:Organisation>
生成所需的正确结果:
3000 4000
要将示例最小化以解决手头的问题,请考虑以下样式表:
XSLT 1.0<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:p="http://www.tibco.com/schemas/prjDelimeter/Schema/Schema2.xsd">
<xsl:output method="text" encoding="UTF-8" />
<xsl:key name="asset" match="p:ASSET" use="p:AssetID" />
<xsl:template match="/p:Organisation">
<!-- other stuff -->
<xsl:if test="p:ASSETS/p:ASSET[count(key('asset', p:AssetID)) > 1]">Found Duplicate Asset ID's</xsl:if>
</xsl:template>
</xsl:stylesheet>
我刚刚发现,即使我们可以用generate-id()概念实现这个需求,如下所示:
<xsl:if test="p:ASSETS/p:ASSET[generate-id()= generate-id(key('asset',p:AssetID)[2])]">Found Duplicate Asset ID's</xsl:if>