- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是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
最佳答案
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标准定义了许多实用格式,用于将日期时间值表示为人类可读的文本。您所需格式的第一 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 个字母的缩写,例如 EST
或 IST
,因为它们不是真正的时区,不是标准化的,甚至不是唯一的( !)。
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 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/
我是一名优秀的程序员,十分优秀!