如何获取所有后代子部件的信息。
我希望将xml转换为csv。 我只是尝试一个通用的解决方案,如果兄弟姐妹然后使用“,”。如果没有兄弟,则使用“|”作为分隔符。
例如如果我输入
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="Q2.xsl"?>
<data>
<ShoppingMalls>
<Shop>
<ShopNumber>1</ShopNumber>
<LineNumber>1</LineNumber>
<Address>
<Street> East </Street>
<PinCode>1 </PinCode>
</Address>
</Shop>
<Shop>
<ShopNumber>2</ShopNumber>
<LineNumber>2</LineNumber>
<Address>
<Street> West </Street>
<PinCode>1 </PinCode>
</Address>
</Shop>
</ShoppingMalls>
<Inventory>
<Line>
<LineNumber>line</LineNumber>
<Description>desc</Description>
<Matrix>quan</Matrix>
<Matrix>quan1</Matrix> <!-- added -->
<Date>date</Date>
</Line>
<Line>
<LineNumber>1</LineNumber>
<Description>Oak chairs</Description>
<Matrix>5</Matrix>
<Matrix>20</Matrix> <!-- added -->
<Matrix>16</Matrix> <!-- added -->
<Date>31 Dec 2004</Date>
</Line>
<Line>
<LineNumber>2</LineNumber>
<Description>Dining tables</Description>
<Matrix>
<Module1>
<Module11> 234</Module11>
<Module11> 333</Module11> <!-- could be nested till any level i.e. might have any number of descendants-->
</Module1>
<SubComp>300</SubComp>
<SubComp>500</SubComp>
<SubComp>800</SubComp>
</Matrix>
<Date>31 Dec 2004</Date>
</Line>
<Line>
<LineNumber>3</LineNumber>
<Description>Folding chairs</Description>
<Matrix>4</Matrix>
<Date>29 Dec 2004</Date>
</Line>
<Line>
<LineNumber>4</LineNumber>
<Description>Couch</Description>
<Matrix>1</Matrix>
<Date>31 Dec 2004</Date>
</Line>
</Inventory>
</data>
然后我希望输出如下...这是要导入到csv文件
ShoppingMalls Information
1|1|East,1
2|2|West,1
Line Information
line|desc|quan,quan1|date
1|Oak chairs|5,20,16|31 Dec 2004
2|Dining tables| 234,333|300,500,800|31 Dec 2004
3|Folding chairs|4|29 Dec 2004
4|Couch|1|31 Dec 2004
我想将节点导航到任何深度。 如果有相同名称的属性那么。然后我希望使用“,”(兄弟姐妹或多值attrinbutes)连接 对于其他节点,分隔符为 “|”在属性和。之间 换行符作为行节点之间的分隔符。 我使用过早期If there are multiple values in the node,then concatenate these into a single string的解决方案。 我希望使用xslt 1.0 我的解决方案,我寻求你的帮助。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="yes" encoding="ISO-8859-1" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template name="Newline"><xsl:text>
</xsl:text></xsl:template>
<xsl:template match="/data/Inventory">
<xsl:text>ShoppingMalls Information</xsl:text>
<xsl:call-template name="Newline" />
<xsl:apply-templates select="Line"/>
</xsl:template>
<xsl:template match="data/ShoppingMalls">
<xsl:text>ShoppingMalls Information</xsl:text>
<xsl:call-template name="Newline" />
<xsl:apply-templates select="Shop"/>
</xsl:template>
<!-- the same solution for Inventory/Line can be used for ShoppingMalls/Shop
-->
<xsl:template match="Line">
<xsl:for-each select="*"> <!-- somehow I belive the ndes can be identfied over here -->
<!--
I THINK THIS BLOCK WILL HAVE SOLUTION
BEGIN
<xsl:if test="count(./child::*) > 1">
<xsl:when test="name(./child/following-sibling::*)=name(./child::*)" >
<xsl:text>,</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:if test="position() != last()">
<xsl:text>|</xsl:text>
</xsl:if>
</xsl:otherwise>
</xsl:if>
END
-->
<xsl:choose>
<!-- below blocks gives a simple way to identify siblings, but it not extensible -->
<xsl:when test="name(./following-sibling::*)=name(.)" >
<xsl:text>,</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:if test="position() != last()">
<xsl:value-of select="'|'"/>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>