1

我正在尝试将我的日期转换为 UTC 格式,因为我必须使用 SimpleDateFormat 类对其进行解析。但它给了我不可解析的日期异常。我的代码如下:

//My date coming from server:  Wed Dec 23 13:00:00 GMT+04:00 2015

SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd MM EE- HH:mm:ss yy");
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
Date myDate = simpleDateFormat.parse(s1.datefrom + "");
4

2 回答 2

1

我相信这应该有效:SimpleDateFormat simpleDateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy",Locale.US);

于 2016-01-13T14:26:36.017 回答
0
于 2018-09-03T06:31:26.903 回答