JSON API在设备中显示的日期格式错误

时间:2019-01-24 06:42:26

标签: java android date simpledateformat epoch

我在活动布局中显示了我的JSON日期,但它给了我这种日期格式“ 1547458358000”。如何将日期格式更改为YYYY-MM-dd k:mm:s?

appAdded是日期来自JSON API。

根据测试结果。 我收到的Toast消息是API TIME,显示为1547458358000,而outDatedAPI显示为null。

 try {
    SimpleDateFormat DateformatAPKAPIInstalled = new SimpleDateFormat("YYYY-MM-dd k:mm:s");
        APITime = DateformatAPKAPIInstalled.parse(appAdded);
        SimpleDateFormat outputFormat = new SimpleDateFormat("YYYY-MM-dd k:mm:s");
         outputDateAPI = outputFormat.format(APITime);
        Toast.makeText(FirstPageActivity.this, "DATE KO" dateAPKUpdated + appAdded + APITime, Toast.LENGTH_LONG).show();


    } catch (ParseException e) {
        e.printStackTrace();
    }

1 个答案:

答案 0 :(得分:0)

您可以传递较长的时间戳,并可以使用以下代码将其转换为日期

private String getDate(long time) {
    Calendar cal = Calendar.getInstance(Locale.ENGLISH);
    cal.setTimeInMillis(time);
    String date = DateFormat.format("yyyy-MM-dd", cal).toString();
    return date;
}