我遇到了 SimpleDateFormat 的问题。我得到了这样的日期字符串:
"2013-05-17 10:15:44"
并尝试用这个来解析它:
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
String formattedDate = simpleDateFormat.format(s2);
但最后一行向我抛出了 IllegalArgumentException。它有什么问题?这对我来说没有任何意义。