我正在尝试检索给定时间戳的本地化日期。我的代码是这样的
String timestamp = "2011-08-01T15:55:03.000+02:00";
Time time = new Time();
time.parse3339(timestamp);
// In strftime format "%a" should be the abbreviated weekday name
// according to the current locale.
String result = time.format("%a")
由于 2011 年 8 月 1 日是星期一,结果字符串应该是“Mon”(假设是英语语言环境),而是“Sun”!