在我的项目中,我从服务器获取 json 数据,json 中有一个名为“creat_at”的字段,其样式类似于“Wed Jun 20 11:01:05 +0800 2012”
如何将其更改为更易于阅读的样式,例如“2012/06/20”?
(我试过 'DateFormat.parse' 但它不起作用:new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy").parse(dateString) cause java.text.ParseException: Unparseable date: "Wed Jun 20 11:00:53 +0800 2012")