java带T的时间字符串转时间
解决方法:
try {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
Date parse = simpleDateFormat.parse(message.get("receiveTime") + "");
String receiveTime= DateFormatUtils.format(parse, "yyyy-MM-dd HH:mm:ss");
} catch (ParseException e) {
e.printStackTrace();
}