xsl中的java util日期格式

时间:2015-01-12 13:27:48

标签: xml xslt date-format simpledateformat

在我的xml文件中有类似的内容:

DeliveryTime="11.11.2015 00:00:00"

现在我只想要没有时间的日期..在这种情况下我如何使用日期格式? 我试过这个:

 <xsl:variable name="s" select="SimpleDateFormat:new('MMM/dd/yyyy)"/>
    <xsl:variable name="date" select="@DeliveryTime"/>
            <xsl:value-of select="SimpleDateFormat:format($s,$date)" />

但我总是收到错误......

1 个答案:

答案 0 :(得分:0)

  

现在我只想要没有时间的日期。

为什么不简单地使用:

<xsl:value-of select="substring-before(@DeliveryTime, ' ')"/>

假设您要保留现有的日期格式。