XSL通过比较将UTC时间转换为本地DateTime



我们接收到类似于UTC时间的日期元素,例如2004-04-12T13:20:00Z

,我们想在本地日期内输出DateTime,该日期时间与2004-04-12T12:20:00-01:00一样的UTC时间表示。

有人可以在XSLT中提供帮助吗?
还是存在实现此目标的功能模板?

将给定的DateTime值转换为 Current 本地时区,使用adjust-dateTime-to-timezone()函数,而无需指定timezone参数。

例如:

<xsl:variable name="datetime">2004-04-12T13:20:00Z</xsl:variable>
<xsl:value-of select="adjust-dateTime-to-timezone($datetime)"/>

将返回:

2004-04-12T12:20:00-01:00

如果在转换时,您系统的当地时间与UTC相抵消-1小时。


重要:

,如果您的当地时间从UTC不变,而是由于节省日光而变化,则可能不会产生预期的结果。要正确地将2004年4月的日期转换为当时的日期,您需要知道您在该特定时间点的偏移是什么。XSLT没有此功能,您必须在可以访问Olson数据库的另一个应用程序中进行转换。


添加:

以上所有内容都需要XSLT 2.0。由于您现在已经澄清了您实际上正在使用XSLT 1.0:

  1. XSLT 1.0无法知道当前与UTC的本地偏移是什么 - 更不用说给定时间点的偏移是什么。
  2. 有一种方法可以将给定的DateTime值调整为另一个TimeZone-如果您提供所需的偏移作为参数调用XSL转换时(或偏移是持续的)。

这是一个模板的示例,该模板将将UTC转换为UTC -1:00(作为常数):

<xsl:template name="UTC-minus-one">
    <xsl:param name="dateTime"/>
    <xsl:variable name="date" select="substring-before($dateTime, 'T')" />
    <xsl:variable name="time" select="substring-before(substring-after($dateTime, 'T'), 'Z')" />
    <xsl:variable name="year" select="substring($date, 1, 4)" />
    <xsl:variable name="month" select="substring($date, 6, 2)" />
    <xsl:variable name="day" select="substring($date, 9, 2)" />
    <xsl:variable name="hour" select="substring($time, 1, 2)" />
    <xsl:variable name="minute" select="substring($time, 4, 2)" />
    <xsl:variable name="second" select="substring($time, 7)" />
    <xsl:variable name="a" select="floor((14 - $month) div 12)"/>
    <xsl:variable name="y" select="$year + 4800 - $a"/>
    <xsl:variable name="m" select="$month + 12*$a - 3"/>    
    <xsl:variable name="jd" select="$day + floor((153*$m + 2) div 5) + 365*$y + floor($y div 4) - floor($y div 100) + floor($y div 400) - 32045" />
    <xsl:variable name="total-seconds" select="86400*$jd + 3600*$hour + 60*$minute + $second - 3600" />
    <xsl:variable name="new-jd" select="floor($total-seconds div 86400)"/>  
    <xsl:variable name="new-hour" select="floor($total-seconds mod 86400 div 3600)"/>
    <xsl:variable name="new-minute" select="floor($total-seconds mod 3600 div 60)"/>
    <xsl:variable name="new-second" select="$total-seconds mod 60"/>
    <xsl:variable name="f" select="$new-jd + 1401 + floor((floor((4 * $new-jd + 274277) div 146097) * 3) div 4) - 38"/>
    <xsl:variable name="e" select="4*$f + 3"/>
    <xsl:variable name="g" select="floor(($e mod 1461) div 4)"/>
    <xsl:variable name="h" select="5*$g + 2"/>
    <xsl:variable name="D" select="floor(($h mod 153) div 5 ) + 1"/>
    <xsl:variable name="M" select="(floor($h div 153) + 2) mod 12 + 1"/>
    <xsl:variable name="Y" select="floor($e div 1461) - 4716 + floor((14 - $M) div 12)"/>
    <xsl:value-of select="concat($Y, format-number($M, '-00'), format-number($D, '-00'))"/>
    <xsl:text>T</xsl:text>
    <xsl:value-of select="concat(format-number($new-hour, '00'), format-number($new-minute, ':00'), format-number($new-second, ':00.###'))"/>
    <xsl:text>-01:00</xsl:text>
</xsl:template>

演示:http://xsltransform.net/bfwr5f8

假设像这样的XML测试文件

<?xml version="1.0"?>
<root>
    <val>2004-04-12T13:20:00Z</val>
    <val>2004-05-12T23:20:00Z</val>
    <val>2004-06-12T00:20:00Z</val>
</root>

这样的XSLT-2.0文件将将时区设置为 -1

<?xml version="1.0"?>
<xsl:stylesheet version="2.0" 
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
   xmlns:xs="http://www.w3.org/2001/XMLSchema">
 <xsl:output indent="yes" omit-xml-declaration="yes" />
 <xsl:strip-space elements="*"/>
 <xsl:template match="//val">
  <xsl:variable name="t_offset" select="xs:dayTimeDuration('-PT1H')" />     <!-- set timezone to -1 hours -->
  <xsl:variable name="time"     select="xs:dateTime(normalize-space(text()))"  />
  <xsl:value-of select="$time" />
  <xsl:value-of select="'&#10;'" />
  <xsl:value-of select="adjust-dateTime-to-timezone($time, $t_offset)" />   <!-- adjust the time to the new timezone -->
  <xsl:value-of select="'&#10;'" />
  <xsl:value-of select="'------------------&#10;'" />
 </xsl:template>
</xsl:stylesheet>

其输出是:

2004-04-12T13:20:00Z
2004-04-12T12:20:00-01:00
------------------
2004-05-12T23:20:00Z
2004-05-12T22:20:00-01:00
------------------
2004-06-12T00:20:00Z
2004-06-11T23:20:00-01:00
------------------

假设您正在使用Oracle SOA Suite进行转换。

xp20:subtract-dayTimeDuration-from-dateTime (/ns0:Your/@DateTime, concat (&quot;PT&quot;, substring-after (substring-before (xp20:timezone-from-dateTime (xp20:current-dateTime() ), &quot;:&quot; ), &quot;-0&quot; ), &quot;H&quot; ) )

这应该解决您的问题

相关内容

  • 没有找到相关文章

最新更新