Joda时间-不同时区不同



我想用Joda时间将当前时间转换为特定时区中的时间。

有没有办法将DateTime time = new DateTime()转换到特定的时区,或者可能得到time.getZone()和另一个DateTimeZone之间的小时数差,然后进行time.minusHourstime.plusHours

我想用Joda时间将当前时间转换为特定时区的时间。

目前还不清楚你是否已经得到了当前时间。如果你已经有了,你可以使用withZone:

DateTime zoned = original.withZone(zone);

如果您只是获取当前时间,请使用适当的构造函数:

DateTime zoned = new DateTime(zone);

或使用DateTime.now:

DateTime zoned = DateTime.now(zone);

退房日期时区&间隔:

DateTime dt = new DateTime();
    // translate to London local time
    DateTime dtLondon = dt.withZone(DateTimeZone.forID("Europe/London"));

间隔:

Interval interval = new Interval(start, end); //start and end are two DateTimes

java.time

java.util日期-时间API及其格式API、SimpleDateFormat已过时且存在错误。建议完全停止使用它们,并切换到现代日期时间API*

此外,下面引用的是Joda Time主页上的通知:

注意,从JavaSE8开始,用户被要求迁移到Java.time(JSR-310)——JDK的核心部分,它取代了这个项目。

使用现代日期时间API java.time的解决方案:

import java.time.ZoneId;
import java.time.ZonedDateTime;
public class Main {
    public static void main(String[] args) {
        // ZonedDateTime.now() is same as ZonedDateTime.now(ZoneId.systemDefault()). In
        // order to specify a specific timezone, use ZoneId.of(...) e.g.
        // ZonedDateTime.now(ZoneId.of("Europe/London"));
        ZonedDateTime zdtDefaultTz = ZonedDateTime.now();
        System.out.println(zdtDefaultTz);
        // Convert zdtDefaultTz to a ZonedDateTime in another timezone e.g.
        // to ZoneId.of("America/New_York")
        ZonedDateTime zdtNewYork = zdtDefaultTz.withZoneSameInstant(ZoneId.of("America/New_York"));
        System.out.println(zdtNewYork);
    }
}

样本运行的输出:

2021-07-25T15:48:10.584414+01:00[Europe/London]
2021-07-25T10:48:10.584414-04:00[America/New_York]

在线演示

跟踪:日期时间了解有关现代日期时间API的更多信息。


*无论出于何种原因,如果您必须坚持使用Java 6或Java 7,您可以使用ThreeTen BackportJava.time的大部分功能向后移植到Java 6&7.如果您正在为Android项目工作,并且您的Android API级别仍然不符合Java-8,请检查通过desugaring和如何在Android项目中使用ThreeTenABP提供的Java 8+API。

相关内容

  • 没有找到相关文章

最新更新