在数据库里的时间格式为: DATE 类型
2020-10-12 11:22:49
接口返回时,格式变成了
2020-10-12T11:22:49.000+0800
解决方法如下:
java 2020-10-12T11:22:49.000+0800 转换成 yyyy-MM-dd HH:mm:ss
/** * 2020-10-12T11:22:49.000+0800字符串 转 2020-10-12 11:22:49 字符串 * @param oldDateStr * @return */ public static String toDateStr(String oldDateStr){ SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); Date date = null; try { date = formatter.parse(oldDateStr); } catch (ParseException e) { e.printStackTrace(); } SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String newDateStr=sdf.format(date); return newDateStr; }