为什么以下代码抛出ParseException?
DateFormat df = new SimpleDateFormat("MMM d, yyyy");
String date = "Jan 1, 2011";
df.parse(date);
结果:
java.text.ParseException:无法解析的日期:“2011年1月1日”
答案 0 :(得分:2)
它与@Gijs Overvliet提到的Locale参数有关。 例如,我正在使用土耳其语语言环境,我的字符串应该相应地设置。
public static void main(String[] args) throws ParseException
{
DateFormat df = new SimpleDateFormat("MMM d, yyyy", Locale.getDefault());
String date = "Oca 1, 2011";
df.parse(date);
}