如何将json对象日期解析为Android

时间:2014-02-18 06:24:57

标签: java android json datetime

如何在Android中将\/Date(1391802454790-0700)\/的json日期解析为(01/31/2014 11:44 AM)

API结果:

{
    "Comment":"ogogog",
    "CommentDate":"\/Date(1391802454790-0700)\/",
    "CommentReply":[
    ],
    "NumberOfLikes":1,   
    "UniqueId":"f786e0da-2e4a-430f-a37c-c60db1901e38",
    "VideoId":65   
}

我尝试了下面的代码,但没有像这种格式那样显示(2014年1月31日上午11:44)。

String json = "\/Date(1391802454790-0700)\/"; 
//String json = "commentReplyCommentDate";
json=json.replace("/Date(", "").replace("-0700)/", "");
long time = Long.parseLong(json);
Date d= new Date(time);
System.out.println("Dateeee---->"+d);

1 个答案:

答案 0 :(得分:0)

您应该使用d

格式化MM/dd/yyyy hh:mm a日期
    String json = "/Date(1391802454790-0700)/";
    json=json.replace("/Date(", "").replace("-0700)/", "");
    long time = Long.parseLong(json);
    Date d= new Date(time);
    System.out.println("Dateeee---->"+d);
    System.out.println(new SimpleDateFormat("MM/dd/yyyy hh:mm a").format(d));

Out put:

   Dateeee---->Sat Feb 08 01:17:34 IST 2014
   02/08/2014 01:17 AM