java.time
所接受的回答使用了传统日期和格式化的API,这是2012年正确的做法。2014年3月,modern Date-Time API 取代了传统日期和时间的API。此后,强烈建议转换为java.time
,即现代日期和时间的API。
除了远离遗留的日期时间和格式化 API, 人们也应避免使用两个/ 三个字母的时区代号。 以下是官方网站< a href=" https://docs. oracle.com/javase/8/docs/ api/java/ util/TimeZone. html" rel="nofollow noreferrer" 的文件摘要 :
Three-letter time zone IDs
For compatibility with JDK 1.1.x, some other three-letter time zone IDs (such as "PST", "CTT", "AST")
are also supported. However, their use is deprecated because the
same abbreviation is often used for multiple time zones (for example,
"CST" could be U.S. "Central Standard Time" and "China Standard
Time"), and the Java platform can then only recognize one of them.
时区标识通常以区域/城市表示,例如亚洲/科卡塔。请查此页
现代日期- 时间 API 提供一个 < a href=" https://docs.oracle.com/javase/8/docs/api/java/time/ ZonedDateTime.html" rel= “ no follown noreferr" codeonedDateTime 类, 包含关于时区和区间偏移的信息。 有关这一类的最好的事情是它按照 < a href=> https://en.wikipedia.org/wiki/ Daylight_ saving_time" rel= “ nofolvection noreferr" > DST < /a > 自动调整区域偏移。
< 强度 > Demo 强度 > :
public class Main {
public static void main(String[] args) {
var zoneId = ZoneId.of("Asia/Kolkata");
// Current time in India
var now = ZonedDateTime.now(zoneId);
System.out.println(now);
// ###### Print the ZonedDateTime in custom formats ######
var formatter1 = DateTimeFormatter.ofPattern("uuuu.MM.dd G at HH:mm:ss z", Locale.ENGLISH);
String strDateTimeCustomFormat = now.format(formatter1);
System.out.println(strDateTimeCustomFormat);
var formatter2 = DateTimeFormatter.ofPattern("uuuu.MM.dd G at HH:mm:ss VV", Locale.ENGLISH);
strDateTimeCustomFormat = now.format(formatter2);
System.out.println(strDateTimeCustomFormat);
}
}
样本运行 < 强 > 输出 < 强 > : 强 >
2024-03-02T22:27:55.546343100+05:30[Asia/Kolkata]
2024.03.02 AD at 22:27:55 IST
2024.03.02 AD at 22:27:55 Asia/Kolkata
有关现代日期- 时间 API 的学习,请访问Trail:Date time