public class SimpleDateFormatTest {
public static void main(String[] args) throws Exception {
SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
/**
* 默认 lenient=true
* 意外输出 2021-12-05 23-02-13 // Sun Dec 05 23:02:13 CST 2021
*/
System.out.println(format.parse("2022-06-12 13:49:24"));
/**
* 禁用 lenient=false
* 抛出异常 java.text.ParseException: Unparseable date
*/
format.setLenient(false);
System.out.println(format.parse("2022-06-12 13:49:24"));
}
}
java.text.SimpleDateFormat踩坑 (lenient=false)
最新推荐文章于 2023-05-07 22:57:51 发布
关键词由CSDN通过智能技术生成