7.8.2 使用DateTimeFormatter解析字符串
7.8.2 使用DateTimeFormatter解析字符串
为了使用DateTimeFormatter
将指定格式的字符串解析成日期、时间对象(LocalDate
、 LocalDate
,TimeLocalTime
等实例),可通过日期、时间对象
提供的parse(CharSequence text, DateTimeFormatter formatter)
方法进行解析。
程序示例
如下程序示范了使用DateTimeFormatter
解析日期、时间字符串。
1 | import java.time.*; |
1 | 2014-04-12T01:06:09 |
上面程序中定义了两个不同格式的日期、时间字符串,为了解析它们,程序分别使用对应的格式字符串创建了DateTimeFormatter
对象,这样DateTimeFormatter
即可按该格式字符串将日期、时间字符串解析成LocalDateTime
对象。
编译、运行该程序,即可看到两个日期、时间字符串都被成功地解析成LocalDateTime
。