apache common lang包中的时间格式化类

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

今天在apache common lang包中发现了个挺好用时间格式化的类

org.apache.commons.lang3.time .DateFormatUtils及DateUtils,前者可以快速的把java.util.Date类型的变量格式化成指定的格式(yyyy-MM-dd HH:mm:ss)的字符串,后者可以根据指定的格式把String类型的变量格式转化成java.util.Date类型的变量,以前都是自己写一个DateUtil来做的,现在省了,反正一般项目中肯定是要用到apache common lang包的。

ps:从3之后,这个包的名称改为了common-lang3了,包名也改成了org.apache.commons.lang3,3之前是common-lang及org.apache.commons.lang。

转载于:https://my.oschina.net/u/914897/blog/376320

你可能感兴趣的:(apache common lang包中的时间格式化类)