我目前有以下工作代码: (tvdata.xslt)
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/tv_guide">
<tv>
<xsl:for-each select="document('cmore.xml')/tv/programme">
<programme>
<title>
<xsl:value-of select="title" />
</title>
<xsl:for-each select="category">
<category>
<xsl:value-of select="text()"/>
</category>
</xsl:for-each>
</programme>
</xsl:for-each>
</tv>
</xsl:template>
</xsl:stylesheet>
(tv-guide.xml)
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="tvdata.xslt"?>
<tv_guide>
</tv_guide>
其中cmore.xml是http://xmltv.xmltv.se中的XML文件。我想做的是使用tv_guide作为根,使用XSLT文件中的数据生成一个新的XML文件。我尝试使用结果文档,但它给了我一个错误。
答案 0 :(得分:1)
稍作修改,您的XSLT文件将可以正常工作。我添加了一个变量来指定程序输入数据和程序输出数据的文件名。因此,XSLT可能如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="curFile" select="'first.cmore.dk_2018-10-10.xml'" />
<xsl:variable name="outFile" select="'cmore.out.xml'" />
<xsl:template match="text()" />
<xsl:template match="/">
<xsl:result-document href="{$outFile}" method="xml">
<tv>
<xsl:for-each select="document($curFile)/tv/programme">
<programme>
<title>
<xsl:value-of select="title" />
</title>
<xsl:for-each select="category">
<category>
<xsl:value-of select="text()"/>
</category>
</xsl:for-each>
</programme>
</xsl:for-each>
</tv>
</xsl:result-document>
</xsl:template>
</xsl:stylesheet>
输出文件由outFile
变量指定。如果要将其更改为输入参数,请将此行更改为<xsl:param name="outFile" />
并将该参数作为输入参数传递给样式表。
要执行此操作,您必须从XML
文件中删除DTD定义行(我没有找到)或将DTD文件添加到工作目录中(如果您知道可以在哪里)获得)。
但是,通过这种方式,您可能可以转换给定链接中的所有XML文件。
如果要动态提供XML文件的名称,请将xsl:variable
更改为xsl:param
,然后将适当的参数传递给XSLT处理器。