这太奇怪了。
我正在使用 Joda Time DateTimeFormatter,给出格式
EEE MMM d, yyyy h:mm a 'UTC'ZZ
它正在打印
mié may 29, 2013 5:15 PM UTC-06:00
这似乎是西班牙语和英语的混合体。
formatLocalDateTime(DateTimeFormat.forPattern("EEE MMM d, yyyy h:mm a 'UTC'ZZ"), dateTime)
public static String formatLocalDateTime(final DateTimeFormatter formatter, final DateTime dateTime) {
if (dateTime == null) {
return "";
}
DateTimeFormatter f = formatter.withLocale(LocaleUtils.toLocale("es_US"));
f = f.withZone(getTimeZone());
return f.print(dateTime);
}
我完全迷路了。有任何想法吗?谢谢!