使用JodaTime将HH:mm(两位数分钟)解析为LocalTime

时间:2015-10-13 15:27:17

标签: java parsing datetime jodatime

我需要解析像“10:10”这样的字符串并创建一个LocalTime对象。 如果字符串类似于“10:1”,则解析应抛出IllegalArgumentException。 (分钟必须是两位数)

所以我做了这个

String time = "10:1";
LocalTime myLT;
DateTimeFormatter dtf = DateTimeFormat.forPattern("HH:mm");
myLT = dtf.parseLocalTime(time);

我也尝试使用DateTimeFormatter

DateTimeFormatter dtf = new DateTimeFormatterBuilder().appendHourOfDay(2)
.appendLiteral(":").appendMinuteOfHour(2).toFormatter();

但“10:1”仍在转换......怎么办?

1 个答案:

答案 0 :(得分:1)

使用DateTimeFormatBuilderappendFixedDecimal方法。您传递的numDigits参数是固定的数字而不是最低要求。

在你的情况下,它会像(我自己没有测试过)

DateTimeFormatter formatter = new DateTimeFormatterBuilder()
    .appendFixedDecimal(DateTimeFieldType.clockhourOfDay(),2)
    .appendFixedDecimal(DateTimeFieldType.minuteOfHour(),2)
    .toFormatter()
    .withZoneUTC();