xslt Ant任务没有将参数传递给我的样式表

时间:2011-10-28 01:39:54

标签: ant

我有这样的样式表

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:param name="testParam"/>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
    <xsl:template match="resources/integer[@name='LOG_LEVEL']/text()">
        <xsl:value-of select="$testParam"/>
    </xsl:template>
</xsl:stylesheet>

我有一个像这样的输入xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <integer name="LOG_LEVEL">3</integer>
    <string name="app_name">Test Application</string>
</resources>

但是当我尝试用ant调用ant中的xslt变换时:

<xslt in="in.xml" out="out.xml" style="style_above.xsl">
    <outputproperty name="method" value="xml"/>
    <outputproperty name="encoding" value="UTF-8"/>
    <outputproperty name="indent" value="yes"/>
    <param name="testParam" expression="test"/>
</xslt>

我得到以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <integer name="LOG_LEVEL"/>
    <string name="app_name">Test Application</string>
</resources>

它似乎没有将我的xslt参数更改为我在蚂蚁目标中指定的值

1 个答案:

答案 0 :(得分:1)

是的,我发现问题是另一回事。即将更新这个为时已晚。我在宏中定义了xslt任务,并且有一个名为param的可选元素,这就是罪魁祸首。感谢