我想用Joda时间将当前时间转换为特定时区的时间。
有没有办法将DateTime time = new DateTime()
转换为特定时区,或者可能是为了获得time.getZone()
与另一个DateTimeZone
之间的小时数差异,然后执行time.minusHours
或time.plusHours
?
答案 0 :(得分:27)
我想用Joda时间将当前时间转换为特定时区的时间。
您是否已经 当前时间尚不清楚。如果您已经拥有它,则可以使用withZone
:
DateTime zoned = original.withZone(zone);
如果您只是获取当前时间,请使用appropriate constructor:
DateTime zoned = new DateTime(zone);
或使用DateTime.now
:
DateTime zoned = DateTime.now(zone);
答案 1 :(得分:8)
查看DateTimeZone& Interval:
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
答案 2 :(得分:1)
java.util
日期时间 API 及其格式化 API SimpleDateFormat
已过时且容易出错。建议完全停止使用它们并切换到 modern Date-Time API*。
另外,下面引用的是来自 home page of Joda-Time 的通知:
<块引用>请注意,从 Java SE 8 开始,要求用户迁移到 java.time (JSR-310) - JDK 的核心部分,取代了该项目。
使用 java.time
(现代日期时间 API)的解决方案:
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]
从 Trail: Date Time 了解有关现代 Date-Time API 的更多信息。
* 出于任何原因,如果您必须坚持使用 Java 6 或 Java 7,您可以使用 ThreeTen-Backport,它将大部分 java.time 功能向后移植到 Java 6 & 7. 如果您正在为 Android 项目工作并且您的 Android API 级别仍然不符合 Java-8,请检查 Java 8+ APIs available through desugaring 和 How to use ThreeTenABP in Android Project。