如何将这个来自android中json数据的时间和日期转换为毫秒?
2013-09-19T03:27:23+01:00
T ??
的含义是什么?答案 0 :(得分:6)
不确定and what's the meaning of T ??
但您可以使用以下代码来获取毫秒。
String dateString="2013-09-19T03:27:23+01:00";
if (dateString != null) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
Date testDate = null;
try {
testDate = sdf.parse(dateString);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Milliseconds==" + testDate.getTime());
}
答案 1 :(得分:0)
尝试这样的事情
String myDate = new String("your date");
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-ddTHH:mm:ss");
Date date = format.parse(myDate);
date.getTime();