如何将Joda Localdate转换为Joda DateTime?

时间:2011-01-11 10:19:39

标签: java timezone jodatime

我正在尝试在执行更多计算之前简单地将TimeZone信息添加回LocalDate。 LocalDate来自使用ObjectLab LocalDateCalculator为现有DateTime添加天数,但该方法需要返回一个修改后的ReadableInstant以形成一个Interval,然后我可以检查它。

我正在尝试的代码相当于将Joda LocalDate转换为Joda DateTime:

LocalDate contextLocalBusinessDate = calculator.getCurrentBusinessDate();
DateTime businessDateAsInContextLocation = new DateTime(contextLocalBusinessDate, contextTimeZone);

我得到的错误来自Joda的转换系统:

java.lang.IllegalArgumentException: No instant converter found for type: org.joda.time.LocalDate
        at org.joda.time.convert.ConverterManager.getInstantConverter(ConverterManager.java:165)
        at org.joda.time.base.BaseDateTime.<init>(BaseDateTime.java:147)
        at org.joda.time.DateTime.<init>(DateTime.java:192)

我正在寻找此问题的修复程序,或者是一种解决方法,可以获得具有完整时区信息的准确间隔。

2 个答案:

答案 0 :(得分:73)

LocalDate上有各种方法,包括:

您必须明确说明您希望时间组件在结果DateTime对象中的位置,这就是DateTime的常规转换构造函数无法执行此操作的原因。

答案 1 :(得分:1)

java.time

下面引用的是来自 home page of Joda-Time 的通知:

<块引用>

请注意,从 Java SE 8 开始,要求用户迁移到 java.time (JSR-310) - JDK 的核心部分,取代了该项目。

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

LocalDate 转换为 ZonedDateTime 的常用方法是首先使用 LocalDate#atStartOfDayLocalDateTime 小时转换为 00:00,然后与 { {1}}。 ZoneId 的替代方法是 LocalDate#atStartOfDay

请注意,LocalDate#atStartOfDay(ZoneId)LocalDate#atTime(LocalTime.MIN) 的另一个变体。但是,它可能不会在 DST 转换当天返回 atStartOfDay 小时的 ZonedDateTime

您可以使用 ZonedDateTime#toOffsetDateTime00:00 转换为 ZonedDateTime

演示:

OffsetDateTime

输出:

import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;

public class Main {
    public static void main(String[] args) {
        LocalDate today = LocalDate.now();
        // Note: Change the ZoneId as applicable e.g. ZoneId.of("Europe/London")

        ZonedDateTime zdt = today.atStartOfDay().atZone(ZoneId.systemDefault());
        System.out.println(zdt);

        OffsetDateTime odt = zdt.toOffsetDateTime();
        System.out.println(odt);
    }
}

ONLINE DEMO

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 desugaringHow to use ThreeTenABP in Android Project