java.text.ParseException: Unparseable date: "2017-3-2" at java.base/java.text.DateFormat.parse(DateFormat.java:399) at chap13exercise/chap13exercise.dao.impl.OrderDaoImpl.<clinit>(OrderDaoImpl.java:19) at chap13exercise/chap13exercise.biz.OrderBiz6.<init>(OrderBiz6.java:180) at chap13exercise/chap13exercise.Test.Test.main(Test.java:11)
时间: 2023-07-14 07:14:15 浏览: 337
java.text.ParseException: Unparseable date: 2/10/2010 15:20:05
这个错误信息表明在使用 `DateFormat.parse()` 方法解析日期字符串时出现了错误。具体来说,它无法解析字符串 "2017-3-2"。这通常是因为日期格式与指定的格式不匹配导致的。
你需要检查你的代码,看看你传递给 `DateFormat.parse()` 方法的日期字符串是否符合指定的格式。如果不符合,你需要更正日期字符串或者更改日期格式。
阅读全文