如何格式化LocalDate
实例以适应18th Aug, 2013
使用 Joda 时间日期格式化程序?
LocalDate localDate = new LocalDate();
string = localDate.toString(dateformat); //what to put in here?
你会得到最接近的是
String dateString = localDate.toString("dd MMM yyyy");
即不支持日期后缀(在这种情况下为“th”)
LocalDate localDate = new LocalDate();
DateTimeFormatter fmt = DateTimeFormat.forPattern("ddd MMMM, yyyy");
string = localDate.toString();
有关 Joda 时间格式的更多信息,您可以在http://www.joda.org/joda-time/key_format.html找到。还解释了如何使用 Builder 来制作自定义日期模式。
祝你好运