Android日期格式。从字符串到日期

时间:2015-02-02 04:52:20

标签: java android typeconverter

我有一个这样的字符串:2015-01-31 16:00:00 +0000 UTC,我想解析这个字符串到日期对象。

yyyy-MM-dd HH:mm:ss' UTC'

但失败了。

1 个答案:

答案 0 :(得分:0)

您可以使用SimpleDateFormat将字符串格式化为日期对象:

DateFormat originalFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss+z", Locale.ENGLISH);
DateFormat targetFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = null;
try {
    date = originalFormat.parse("2015-01-31 16:00:00 +0000");
    String formattedDate = targetFormat.format(date);
} catch (ParseException e) {
    e.printStackTrace();
}