0

我想使用变量获取模板映射,我用于为该XSl样式表创建vxml格式如何获得打击 xsl 表

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    version="1.0">
    <xsl:strip-space elements="*" />
    <xsl:output method="xml" version="1.0" encoding="UTF-8" />

    <xsl:template name="temp1" match="message">
        <form>
            <block>
                <audio>
                    <xsl:attribute name="src1">
                        <xsl:value-of select="audio1/@src1" />
                    </xsl:attribute>
                    <xsl:value-of select="audio1" />
                </audio>
            </block>
        </form>
    </xsl:template>

    <xsl:template name="temp2" match="message">
        <form>
            <block>
                <audio>
                    <xsl:attribute name="src2">
                        <xsl:value-of select="audio2/@src2" />
                    </xsl:attribute>
                    <xsl:value-of select="audio2" />
                </audio>
            </block>
        </form>
    </xsl:template>

    <xsl:template name="temp3" match="vxml">
        <vxml version="2.0" xmlns="http://www.w3.org/2001/vxml"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:schemaLocation="http://www.w3.org/2001/vxml  http://www.w3.org/TR/voicexml20/vxml.xsd">
            <xsl:call-template name="temp1" />
        </vxml>
    </xsl:template>

</xsl:stylesheet>

我想要一些时间运行tem1和一些时间运行tem2。您可以使用那里的变量(Java 中的变量)更改模板我如何开发代码?下面的代码用于捕获 java 值

<xsl:attribute name="src2">
    <xsl:value-of select="audio2/@src2" />
</xsl:attribute>
<xsl:value-of select="audio2" />

这是来自 java 的传递字符串

String var = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
                        + "<vxml>" 
                        + "<audio src=\"" + getFullPath + "\"/>" 
                        + "</vxml>";

我如何开发代码?

谢谢。

4

0 回答 0