如何在java 中如何将String类型的转换成Date类型,将数据添加到oracle数据库中,

2025-01-06 07:43:00
推荐回答(1个)
回答1:

用SimpleDateFormat来转换
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = sdf.parse("2008-08-08 12:10:12");