我有一个这样的字符串:2015-01-31 16:00:00 +0000 UTC,我想解析这个字符串到日期对象。
yyyy-MM-dd HH:mm:ss' UTC'
但失败了。
答案 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();
}