如何将rich:calendar date转换为mysql Date

时间:2013-10-09 10:27:04

标签: java mysql richfaces

我正在尝试将rich:calendar date转换为mysql Date。

并且在处理程序中empDOJ是Date类型。当我尝试通过SimpleDateFormat转换它时,它不会转换。

SimpleDateFormat sdf=new SimpleDateFormat("yyyy/mm/dd");
Date conDate=sdf.parse("doj");

1 个答案:

答案 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