如何将android中json数据的时间和日期正确转换为毫秒??

2013-09-19T03:27:23+01:00

T的意思是什么??

最佳答案

不确定是否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());

        }

09-27 01:15