我环顾四周,找不到任何符合我需要的东西。
我得到以下字符串:
"March 13, 2013"
并需要将其转换为
"2013-03-13"
我尝试使用此代码:
SimpleDateFormat inputFormat = new SimpleDateFormat("MMMMMMMMMM dd, YYYY");
SimpleDateFormat outputFormat = new SimpleDateFormat("YYYY-MM-dd");
Date d = inputFormat.parse(startDate);
System.out.println(outputFormat.format(d));
但我得到“203-12-30”.. 为什么会这样?