今天无聊,来看了下1.8的时间类型LocalDateTime,当想把字符串转成LocalDateTime的时候报错!! java.time.format.DateTimeParseException: Text '2018-05-31 11:43:34.234' could not be parsed: Unable to obtain LocalDateTime from TemporalAccessor: {SecondOfMinute=34, MicroOfSecond=234000, N…
1. DateFormat类概述: DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间. 是抽象类,所以使用其子类SimpleDateFormat 2. SimpleDateFormat构造方法: public SimpleDateFormat() public SimpleDateFormat(String pattern) 3. 成员方法 public final String format(Date date) public Date pars…