使用XSLT将XML转换为格式化文本

时间:2009-08-06 11:17:58

标签: xml xslt

我有以下格式的XML:

<Order>
  <Customer>
     <Name>kapil</name>
     <AddressLine1>ABC</AddressLine1>
     <PostCode>12345</postCode>
  </Customer>
  <Customer>
     <Name>Soniya</name>
     <AddressLine1>XYZPER</AddressLine1>
     <PostCode>54321</postCode>
  </Customer>
  <Customer>
     <Name>kapil</name>
     <AddressLine1>ABC</AddressLine1>
     <PostCode>12345</postCode>
  </Customer>
</Order>

我希望文本文件的格式为

Soniya    XYZPER   54321
Kapil     ABC      12345

我想通过XSLT来做。

4 个答案:

答案 0 :(得分:1)

为了在XSLT 1.0中填充带空格的字符串,您可以使用如下命名模板:

<xsl:template name="ppad">
    <xsl:param name="str" />
    <xsl:param name="chr" select="' '" />
    <xsl:param name="len" select="0" />
    <xsl:choose>
        <xsl:when test="string-length($str) &lt; $len">
            <xsl:call-template name="ppad">
                <xsl:with-param name="str" select="concat($str, $chr)" />
                <xsl:with-param name="len" select="$len" />
                <xsl:with-param name="chr" select="$chr" />
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$str" />
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

然后用字符串和长度作为参数调用它:

<xsl:call-template name="rpad">
    <xsl:with-param name="str" select="Name" />
    <xsl:with-param name="len" select="16" />
</xsl:call-template>

答案 1 :(得分:1)

您可以使用XSL-FO和XSL-FO处理器,它可以帮助您格式化输出(在您的情况下为您的结果设置表格)并将其输出为各种格式(纯文本,PDF ...) 对于初学者,您应该检查w3schools,并使用Apache FOP(一种开源解决方案)来处理您的XML文档。 就我而言,我使用XSL-FO从XML文件生成PDF。

答案 2 :(得分:0)

<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0"
>

<xsl:template match='/Order'>
  <xsl:for-each select='Customer'>
    <xsl:value-of select='Name' />
    <xsl:value-of select='AddressLine1' />
    <xsl:value-of select='PostCode' />
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

这并没有解决排序(你没有指定),并且在列中排列所有内容,这可能很棘手......

答案 3 :(得分:0)

增强了Jorn Horstmann的答案,包括lpad和rpad

<xsl:template name="rpad">
    <xsl:param name="str"/>
    <xsl:param name="len" select="0" />
    <xsl:param name="chr" select="' '" />
    <xsl:call-template name="pad">
        <xsl:with-param name="str" select="$str" />
        <xsl:with-param name="len" select="$len" />
        <xsl:with-param name="chr" select="$chr" />
        </xsl:call-template>
</xsl:template>

<xsl:template name="lpad">
    <xsl:param name="str"/>
    <xsl:param name="len" select="0" />
    <xsl:param name="chr" select="' '" />
    <xsl:call-template name="pad">
        <xsl:with-param name="str" select="$str" />
        <xsl:with-param name="len" select="$len" />
        <xsl:with-param name="chr" select="$chr" />
        <xsl:with-param name="justify" select="'right'" />
    </xsl:call-template>
</xsl:template>

<xsl:template name="pad">
    <xsl:param name="str"/>
    <xsl:param name="len" select="0" />     
    <xsl:param name="chr" select="' '" />
    <xsl:param name="justify" select="'left'"/>
    <xsl:choose>
        <xsl:when test="string-length($str) &lt; $len">
            <xsl:variable name="newStr">
                <xsl:choose>
                    <xsl:when test="$justify = 'left'">
                        <xsl:value-of select="concat($str,' ')"/>
                    </xsl:when>
                    <xsl:otherwise>
                        <xsl:value-of select="concat(' ',$str)"/>
                    </xsl:otherwise>
                </xsl:choose>
            </xsl:variable>
            <xsl:call-template name="pad">
                <xsl:with-param name="len" select="$len"/>
                <xsl:with-param name="justify" select="$justify" />
                <xsl:with-param name="chr" select="$chr" />
                <xsl:with-param name="str" select="$newStr" />
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$str"/>
        </xsl:otherwise>            
    </xsl:choose>
</xsl:template>

右键填充字符串&#39; myvalue&#39;空白到20个字符使用:

<xsl:call-template name="rpad">
    <xsl:with-param name="str" select="'myvalue'" />
    <xsl:with-param name="len" select="20" />
</xsl:call-template>

要填充字符串&#39; myvalue&#39;空白到36个字符使用:

<xsl:call-template name="lpad">
    <xsl:with-param name="str" select="'myvalue'" />
    <xsl:with-param name="len" select="36" />
</xsl:call-template>

或直接指定所需文本对齐的呼叫垫(即左或右)

<xsl:call-template name="pad">
    <xsl:with-param name="str" select="'myvalue'" />
    <xsl:with-param name="len" select="36" />
    <xsl:with-param name="justify" select="'right'" />
</xsl:call-template>