gpt4 book ai didi

java - XSL 通过偏移比较将 UTC 时间转换为本地日期时间

转载 作者:行者123 更新时间:2023-11-29 07:30:59 25 4
gpt4 key购买 nike

我们接收与 UTC 时间相关的日期时间元素,例如 2004-04-12T13:20:00Z

我们想输出本地日期时间的日期时间,用相对于 UTC 时间的偏移量表示,如 2004-04-12T12:20:00-01:00

有人可以帮助在 XSLT 中实现这一点吗?
或者是否存在实现此目的的功能模板?

最佳答案

要将给定的日期时间值转换为当前本地时区,请使用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 月的日期正确转换为当时的本地时间,您需要知道在该特定时间点与 UTC 的偏移量。 XSLT 没有此功能,您必须在另一个可以访问 Olson database 的应用程序中进行转换.


添加:

以上所有内容都需要 XSLT 2.0。由于您现在已经阐明您实际上使用的是 XSLT 1.0:

  1. XSLT 1.0 无法知道与 UTC 的当前本地偏移量是多少 - 更不用说给定时间点的偏移量了。
  2. 有一种方法可以将给定的日期时间值调整为另一个时区 - 如果您提供所需的偏移量作为参数当调用 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

关于java - XSL 通过偏移比较将 UTC 时间转换为本地日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42710757/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com