public class DateParser {
public static void main(String[] args) {
String dateString = "2015-07-20";
try
{
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
Date dt=dateFormat.parse(dateString);
} catch(Exception e) {
e.printStackTrace();
}
}
}
以上是我的代码。我正在尝试解析日期字符串。如果我的地方是美国,它的工作正常。如果我将其更改为阿拉伯语(在日历设置中。我使用的是Windows机器),它无法正常工作。低于错误。
java.text.ParseException: Unparseable date: "2015-07-20"
at java.text.DateFormat.parse(Unknown Source)
at DateParser.main(DateParser.java:34)
我做错了什么?