我正在尝试将rich:calendar date转换为mysql Date。
并且在处理程序中empDOJ是Date类型。当我尝试通过SimpleDateFormat转换它时,它不会转换。
SimpleDateFormat sdf=new SimpleDateFormat("yyyy/mm/dd");
Date conDate=sdf.parse("doj");
答案 0 :(得分:0)
SimpleDateFormat sdf=new SimpleDateFormat("yyyy/MM/dd");
Date conDate=sdf.parse(doj);
而不是
SimpleDateFormat sdf=new SimpleDateFormat("yyyy/mm/dd");
Date conDate=sdf.parse("doj");
mm
表示Minutes
MM
表示Month