这是一个自我回答的帖子,因为我花了一些时间才找到以下 XTSE0120 的原因。我对 XSLT 很陌生,犯了一个错误,在外面放了一些文字<xsl:template>
:
bellack@bellack-TP-T430u:~$ cat -n /tmp/x.xsl
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <xsl:stylesheet
3 version="2.0"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 >
6 <xsl:output method="text"/>
7 <xsl:template name="build" match="/">
8 <!--
9 a lot of xslt code lines
10 -->
11 </xsl:template>
12 ****** misplaced text ****************
13 </xsl:stylesheet>
由于这是不允许的,我收到错误 XTSE120,请参阅http://www.w3.org/TR/xslt-30/#err-XTSE0120:
bellack@bellack-TP-T430u:~/workspace/tembanking/generator/crud$ java -jar ../lib/saxon9.jar -xsl:/tmp/x.xsl -s:/dev/null
Error at xsl:template on line 7 of file:/tmp/x.xsl:
XTSE0120: No character data is allowed between top-level elements
Failed to compile stylesheet. 1 error detected.
但是第 7 行报告了错误,并且由于 x.xsl 有几百行,我在第 7 行周围搜索错误是徒劳的,错误实际上在文件末尾。
我不知道除了 saxon 之外的其他 XSLT 处理器是否也会给出这种误导性错误消息。
希望对某人有所帮助...
你做