1. 程式人生 > >轉換時間格式2015-12-31T16:00:00.000Z

轉換時間格式2015-12-31T16:00:00.000Z

year的格式為2015-12-31T16:00:00.000Z,前端怎麼轉換都沒反應,只能在後臺接口裡轉啦,文章只是為了備忘。

year = year.replace("Z", " UTC");  SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z");  Date d = format.parse(year); SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy"); //只要年份 Date year_f = simpleDateFormat.format(d);