标签: java date parsing simpledateformat
我从openweather api以"dt":1489602000"格式收到日期和时间,我不知道这是什么意思。我希望收到类似这样的内容"2014-07-23 09:00:00"如何使用SimpleDateFormat
"dt":1489602000"
"2014-07-23 09:00:00"
答案 0 :(得分:1)
String transformedDate = new SimpleDateFormat("H:mm dd MMM yy").format(new Date(yourTime*1000));
Customize your date format like there