Parse JSON in UNIX date in Java/Android without any library

前端 未结 3 1155
鱼传尺愫
鱼传尺愫 2021-01-07 12:39

I have a JSON array received from my server. I obtain a date as a timestamp String – for example, [{\"date\": \"1418056895\", ... }] – and I need to

3条回答
  •  囚心锁ツ
    2021-01-07 13:37

    I have checked your api documentation and the date you have in response is in unix time format as described here wall.post

    You can convert it using the method described here Convert Unix time stamp to date in java

    Once converted you can format the date as described below.

     private List feedItems;
    TextView timestamp
     FeedItem item = feedItems.get(position);
    Long timeObject = Long.parseLong(getTimeStamp());
    
    //use the timeObject and convert it in the String as described
    // in above link to convert timestamp in date object than in String
    
    //Once available set it again in timestamp
    timestamp.setText(formattedDate);
    

提交回复
热议问题