给定日期时间和时间,

    LocalDateTime rightDateWrongTime = new LocalDateTime("2017-03-02T15:23:00.000");
    LocalTime rightTime = new LocalTime("17:30:00");

我可以像这样组合它们:
    LocalDateTime rightDateRightTime = rightDateWrongTime.withTime(
        rightTime.getHourOfDay(), rightTime.getMinuteOfHour(),
        rightTime.getSecondOfMinute(), rightTime.getMillisOfSecond());

感觉应该有更方便的方法。像这样的东西:
    LocalDateTime rightDateRightTime = rightDateWrongTime.withTime(rightTime);

但我找不到任何东西。是否存在类似的方法?

最佳答案

您可以使用:

LocalDateTime rightDateRightTime = rightDateWrongTime.withFields(rightTime);

它对我有用(我使用的是 joda 2.2 - 不确定何时引入 withFields 方法)

关于java - 从 LocalDateTime 和 LocalTime 创建一个新的 LocalDateTime,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42559569/

10-12 03:11