当前位置:Gxlcms > mysql > mysql-时间为空值的设为0000-00-00怎么插入到数据库中

mysql-时间为空值的设为0000-00-00怎么插入到数据库中

时间:2021-07-01 10:21:17 帮助过:79人阅读

mysqljson

Java读取json数据到MySQL中,json中的regist_time为String ,数据库中的为Date,当regist_time为空时插入不到数据库,所有regist_time为空时,时间设为0000年00月00日,还是不对,
if(regist_time=="") regist_time="0000年00月00日";
SimpleDateFormat format = new SimpleDateFormat("yyyy年MM月dd日");
Date date =format.parse(regist_time);
java.sql.Date sqlDate=new java.sql.Date(date.getTime());

return sqlDate;

人气教程排行