我正在从 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
以下是用于解析 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 格式匹配的数据。