Java8的日期LocalDateTime的中间的`T`?
PHPz
PHPz 2017-04-17 13:57:23
0
1
906

在使用Java8的日期API,其中的LocalDateTime,获取到的日期2015-06-14T15:06:05,这其中的T是什么意思?为何会要在中间加一个T
如果想要和以前一样格式化为2015-06-14 15:06:05jackson中应该如何配置?

PHPz
PHPz

学习是最好的投资!

reply all(1)
小葫芦

The toString function of LocalDateTime is as follows:
@Override
public String toString() {
return date.toString() + 'T' + time.toString();
}
Got it

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!