我需要解析像“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”仍在转换......怎么办?
答案 0 :(得分:1)
使用DateTimeFormatBuilder的appendFixedDecimal
方法。您传递的numDigits
参数是固定的数字而不是最低要求。
在你的情况下,它会像(我自己没有测试过)
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.appendFixedDecimal(DateTimeFieldType.clockhourOfDay(),2)
.appendFixedDecimal(DateTimeFieldType.minuteOfHour(),2)
.toFormatter()
.withZoneUTC();