在Talend中应用XSLT时,XML解析器提前结束文件错误

时间:2015-11-26 12:17:26

标签: xslt talend

我必须使用tXSLT在Talend Data Integrator中转换XML文件。这是XSL样式表代码。

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

<!-- Configure $new-line below as your require for your text file format type. -->
<xsl:variable name="new-line" select="'&#x0A;'" /> 
<!-- An alternative configuration is '&#x0D;&#x0A;' --> 

 <xsl:template match="/">
  <xsl:apply-templates select="/rowData/rows"/>
</xsl:template>

<xsl:template match="rows">
  <xsl:value-of select="concat(Plan,'|',Purpose,'|',Description,'|',Travel_Date,'|',Length_of_trip_days,'|',Air_Travel,'|',Total_Travel,'|',Total_Airfare,'|',Total_Hotel,'|',Total_Meals,'|',Total_Rental_Car)" />
  <xsl:value-of select="$new-line" />         
</xsl:template> 

</xsl:stylesheet>

但是我的文件错误提前结束了。任何线索的原因。

0 个答案:

没有答案