我正在尝试将我的日期转换为 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 + "");