LocalDateTime.parse 中缺少第二个 (00)
missing second(00) from LocalDateTime.parse
LocalDateTime.parse
缺少第二个 (00)
LocalTime time = LocalTime.NOON;
DateTimeFormatter formatTime = DateTimeFormatter.ofPattern("HH:mm:ss");
String value ="20200810" + time.format(formatTime);
LocalDateTime localDateTime = LocalDateTime.parse(value, DateTimeFormatter.ofPattern("yyyyMMddHH:mm:ss"));
日志
=========value========== 2020081012:00:00
===localDateTime===2020-08-10T**12:00**
我也尝试将 LocalTime.NOON
更改为 LocalTime.of(12,0,0)
,但结果仍然相同。
将以下行写入日志:
localDateTime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
上面的行 returns 一个符合 DateTimeFormatter.ISO_LOCAL_DATE_TIME
.
的字符串
您还可以根据需要指定自定义图案,例如
localDateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))
或
localDateTime.format(DateTimeFormatter.ofPattern("yyyyMMddHH:mm:ss"))
如果直接打印localDateTime
,会打印LocalDateTime
的toString
方法返回的字符串。
请注意,由于 second
部分,12:00:00
是 00
,LocalDateTime
的默认 toString
实现会忽略 second
部分。
以下是 LocalDateTime
的 toString()
实现供您参考:
@Override
public String toString() {
return date.toString() + 'T' + time.toString();
}
下面给出了 LocalTime
的 toString()
实现:
@Override
public String toString() {
StringBuilder buf = new StringBuilder(18);
int hourValue = hour;
int minuteValue = minute;
int secondValue = second;
int nanoValue = nano;
buf.append(hourValue < 10 ? "0" : "").append(hourValue)
.append(minuteValue < 10 ? ":0" : ":").append(minuteValue);
if (secondValue > 0 || nanoValue > 0) {
buf.append(secondValue < 10 ? ":0" : ":").append(secondValue);
if (nanoValue > 0) {
buf.append('.');
if (nanoValue % 1000_000 == 0) {
buf.append(Integer.toString((nanoValue / 1000_000) + 1000).substring(1));
} else if (nanoValue % 1000 == 0) {
buf.append(Integer.toString((nanoValue / 1000) + 1000_000).substring(1));
} else {
buf.append(Integer.toString((nanoValue) + 1000_000_000).substring(1));
}
}
}
return buf.toString();
}
如您所见,只有当 second
和 nano
的值大于 0
.
时,它们才会被包含在内
LocalDateTime.parse
LocalTime time = LocalTime.NOON;
DateTimeFormatter formatTime = DateTimeFormatter.ofPattern("HH:mm:ss");
String value ="20200810" + time.format(formatTime);
LocalDateTime localDateTime = LocalDateTime.parse(value, DateTimeFormatter.ofPattern("yyyyMMddHH:mm:ss"));
日志
=========value========== 2020081012:00:00
===localDateTime===2020-08-10T**12:00**
我也尝试将 LocalTime.NOON
更改为 LocalTime.of(12,0,0)
,但结果仍然相同。
将以下行写入日志:
localDateTime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME)
上面的行 returns 一个符合 DateTimeFormatter.ISO_LOCAL_DATE_TIME
.
您还可以根据需要指定自定义图案,例如
localDateTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))
或
localDateTime.format(DateTimeFormatter.ofPattern("yyyyMMddHH:mm:ss"))
如果直接打印localDateTime
,会打印LocalDateTime
的toString
方法返回的字符串。
请注意,由于 second
部分,12:00:00
是 00
,LocalDateTime
的默认 toString
实现会忽略 second
部分。
以下是 LocalDateTime
的 toString()
实现供您参考:
@Override
public String toString() {
return date.toString() + 'T' + time.toString();
}
下面给出了 LocalTime
的 toString()
实现:
@Override
public String toString() {
StringBuilder buf = new StringBuilder(18);
int hourValue = hour;
int minuteValue = minute;
int secondValue = second;
int nanoValue = nano;
buf.append(hourValue < 10 ? "0" : "").append(hourValue)
.append(minuteValue < 10 ? ":0" : ":").append(minuteValue);
if (secondValue > 0 || nanoValue > 0) {
buf.append(secondValue < 10 ? ":0" : ":").append(secondValue);
if (nanoValue > 0) {
buf.append('.');
if (nanoValue % 1000_000 == 0) {
buf.append(Integer.toString((nanoValue / 1000_000) + 1000).substring(1));
} else if (nanoValue % 1000 == 0) {
buf.append(Integer.toString((nanoValue / 1000) + 1000_000).substring(1));
} else {
buf.append(Integer.toString((nanoValue) + 1000_000_000).substring(1));
}
}
}
return buf.toString();
}
如您所见,只有当 second
和 nano
的值大于 0
.