PrettyTime 4.0.1.Final 已发布,距离上次发布的 4.0 已过去了整整三年。不过官网上依然没有该版本的改进记录说明。
下载地址:https://github.com/ocpsoft/prettytime/releases/tag/4.0.1.Final
Maven:
<dependency>
<groupId>org.ocpsoft.prettytime</groupId>
<artifactId>prettytime</artifactId>
<version>4.0.1.Final</version>
</dependency>
<!-- To use snapshots, you must also use the Sonatype Snapshots respository -->
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
Gradle:
compile 'org.ocpsoft.prettytime:prettytime:4.0.1.Final'
PrettyTime 是一个开源的时间格式化类库。它能够将时间格式成易于用户阅读的格式,如”12分钟前”、”2天前”、”至今3个月”等。易于使用,完全可定制,可以创建属于自己 TimeUnit 和 TimeFormat 对象。能够与 JSF 框架集成使用。
示例代码:
import java.util.Date;
import com.ocpsoft.pretty.time.PrettyTime;
public class BasicJavaApp
{
public static void main(String[] args)
{
PrettyTime p = new PrettyTime();
System.out.println(p.format(new Date()));
}
}
转自 http://www.oschina.net/news/93982/prettytime-4-0-1-final-released