我必须使用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="'
'" />
<!-- An alternative configuration is '
' -->
<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>
但是我的文件错误提前结束了。任何线索的原因。