我正在从xml文件中检索数据并将其存储在文本文件中。 以下是my.xml文件:
<?xml version="1.0"?>
<Parent>
<Action>POSTACTION</ActionState>
<Message><![CDATA[An Exception is thrown testFunctionAlpha()]]></Message>
<Property key="Direction" value="IN"/>
<Property key="MethodName" value="testFunctionAlpha"/>
<Property key="ReturnValue" value="exception"/>
</Parent>
<Parent>
<Action>PREACTION</ActionState>
<Message><![CDATA[This is message of myFunction ]]></Message>
<Property key="Direction" value="IN"/>
<Property key="MethodName" value="myFunction"/>
<Property key="ReturnValue" value="cmy::returnvalue"/>
</Parent>
xml文件中有多个这样的记录。 我正在使用以下命令来对此xml进行分区并将日期存储在测试文件中。
xsltproc scan.xsl my.xml >> output.txt
以下是用于parce xml文件的scan.xsl文件内容:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="Parent">
<xsl:variable name="mesg" select="./Message"/>
<xsl:if test="$mesg = 'An Exception is thrown testFunctionAlpha()'">
<xsl:value-of select="./Action"/><xsl:text> </xsl:text>
<xsl:value-of select="$mesg"/><xsl:text> </xsl:text>
<xsl:apply-templates select="Property[@key='Direction']"/><xsl:text> </xsl:text>
<xsl:apply-templates select="Property[@key='MethodName']"/><xsl:text> </xsl:text>
<xsl:apply-templates select="Property[@key='ReturnValue']"/>
</xsl:if>
</xsl:template>
<xsl:template match="Property"><xsl:value-of select="@value"/></xsl:template>
</xsl:stylesheet>
我想将日期存储在文本文件中,只有那些标签值为的标签 “抛出异常testFunctionAlpha()” 我可以使用上面的代码得到这个,但Output.txt包含, - 未匹配标签的空行。 如何避免空行? 因此output.txt仅包含与xsl格式匹配的数据。
答案 0 :(得分:2)
如果确保捕获第一个模板上的根元素,然后仅将模板应用于要映射的元素,则可以确保不应用built-in default processing templates。
另外,换行的其他来源可能是,如果您的text()
中有任何其他空格,您可以使用normalize-space()
函数在xsl:selects
}中删除它p>
由于您的示例输入xml无效,我添加了一个包装根元素(xml)并将ActionResult
结束标记更改为Action
。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="/xml">
<xsl:apply-templates select="Parent"/>
</xsl:template>
<xsl:template match="Parent">
<xsl:variable name="mesg" select="Message"/>
<xsl:if test="$mesg = 'An Exception is thrown testFunctionAlpha()'">
<xsl:value-of select="Action"/>
<xsl:text> </xsl:text>
<xsl:value-of select="$mesg"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="Property[@key='Direction']"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="Property[@key='MethodName']"/>
<xsl:text> </xsl:text>
<xsl:apply-templates select="Property[@key='ReturnValue']"/>
</xsl:if>
</xsl:template>
<xsl:template match="Property">
<xsl:value-of select="@value"/>
</xsl:template>
</xsl:stylesheet>
输入XML:
<xml>
<Parent>
<Action>POSTACTION</Action>
<Message><![CDATA[An Exception is thrown testFunctionAlpha()]]></Message>
<Property key="Direction" value="IN"/>
<Property key="MethodName" value="testFunctionAlpha"/>
<Property key="ReturnValue" value="exception"/>
</Parent>
<Parent>
<Action>PREACTION</Action>
<Message><![CDATA[This is message of myFunction ]]></Message>
<Property key="Direction" value="IN"/>
<Property key="MethodName" value="myFunction"/>
<Property key="ReturnValue" value="cmy::returnvalue"/>
</Parent>
</xml>
结果:
POSTACTION抛出异常testFunctionAlpha()IN testFunctionAlpha异常
修改的
如果您不想捕获根,您也可以通过禁止它来覆盖text()
内置模板:
<xsl:template match="text()"/>