gpt4 book ai didi

java - 如何在java中获取带有时区的日期格式

转载 作者:行者123 更新时间:2023-12-01 19:49:33 29 4
gpt4 key购买 nike

我是java新手。我想获得这种日期格式,并在末尾以文本形式显示时区。

2017-11-23T23:43:45-05:00[America/New_York]

我现在所拥有的是这个,我还想添加用户的默认时区作为最后的时区。这是我目前拥有的:

SimpleDateFormat trust = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ", Locale.getDefault());

这给了我(示例):

2018-08-17T22:39:39-0400

最佳答案

tl;博士

ZonedDateTime                        // Represent a moment as seen in the wall-clock time used by the people of a particular region (a time zone). 
.now( // Capture the current moment.
ZoneId.of( "America/New_York" ) // Specify the time zone through whose wall-clock time we want to perceive the current date and time.
) // Returns a `ZonedDateTime` object.
.toString() // Generate text in standard ISO 8601 format extended to append the name of the time zone in square brackets.

2017-11-23T23:43:45-05:00[America/New_York]

ISO 8601

ISO 8601标准定义了许多实用格式,用于将日期时间值表示为人类可读的文本。您所需格式的第一 block 就是这样的标准格式:

2017-11-23T23:43:45-05:00

您所需的格式通过在方括号中附加时区名称来扩展标准格式。

2017-11-23T23:43:45-05:00[America/New_York]

该扩展标准格式正是 ZonedDateTime::toString 的行为。方法。您会发现该类与 Java 捆绑在一起。

ZonedDateTime.now().toString()  // Generate text in standard ISO 8601 format extended to append the name of the time zone in square brackets.

避免遗留日期时间类

SimpleDateFormat 类是麻烦的旧日期时间类的一部分,多年前已被 java.time 类取代。永远不要使用这些可怕的遗留类。

分区日期时间

获取特定地区(时区)的人们使用的挂钟时间中看到的当前时刻。

指定proper time zone name格式为大洲/地区,如America/Montreal , Africa/Casablanca ,或太平洋/奥克兰。切勿使用 3-4 个字母的缩写,例如 ESTIST,因为它们不是真正的时区,不是标准化的,甚至不是唯一的( !)。

ZoneId z = ZoneId.of( "America/New_York" ) ;
ZonedDateTime zdt = ZonedDateTime.now( z ) ;

生成一个 String 对象,其中包含所需格式的文本。

String output = zdt.toString() ;  // Generate text in standard ISO 8601 format extended to append the name of the time zone in square brackets.
<小时/>

关于java.time

java.time框架内置于 Java 8 及更高版本中。这些类取代了麻烦的旧类 legacy日期时间类,例如 java.util.Date , Calendar , & SimpleDateFormat .

Joda-Time项目,现在位于 maintenance mode ,建议迁移到java.time类。

要了解更多信息,请参阅 Oracle Tutorial 。并在 Stack Overflow 上搜索许多示例和解释。规范为JSR 310 .

您可以直接与数据库交换java.time对象。使用JDBC driver符合JDBC 4.2或稍后。不需要字符串,不需要 java.sql.* 类。

从哪里获取java.time类?

ThreeTen-Extra项目通过附加类扩展了 java.time。该项目是 java.time future 可能添加的内容的试验场。您可能会在这里找到一些有用的类,例如 Interval , YearWeek , YearQuarter ,和more .

关于java - 如何在java中获取带有时区的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51904809/

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