SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String str = sdf.format(new Date());//把Date转为String Date date = sdf.parse(str);//把String转为Date 注:str必须为时间格式的字符串,并且必须与定义的时间格式一致 在IDEA的内,在没有抛出 throws ParseException 或进行 try/catch的时候 就会报unhandled exception :java.text.parseException的错误
使用IDEA进行String和Date相互转换时:unhandled exception :java.text.parseException
最新推荐文章于 2022-03-03 14:09:33 发布