如何将此字符串解析为时区戳时区问题?
renderingOrder
答案 0 :(得分:0)
这似乎有效:
TimeZone tz = TimeZone.getTimeZone("Europe/Paris")
String timestamp = "29-JAN-2014 01:00:00.000 PM";
DateFormat df = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss.SSS aa");
df.setTimeZone(tz)
try {
dateFormatted = df.parse(timestamp);
} catch (ParseException execption) {
execption.printStackTrace();
}
但你必须从时间戳
中分割出时区