我有一个包含多个日期的字符串:
[2012 年 7 月 20 日下午 5:11:36,670 UTC,2012 年 7 月 20 日下午 5:11:36,683 UTC]
ParsePosition parsePos = new ParsePosition(1);
SimpleDateFormat format2 = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss,SSS z a");
System.out.println(format2.parse(entry.getValue().toString(), parsePos)) ;
输出 :Fri Jul 20 06:11:36 BST 2012
我需要输出为20-Jul-2012 5:11:36,670 UTC PM
.
我是否需要在 LOCALE 中设置SimpleDateFormat
没有不同的输出?