我正在尝试将rich:calendar日期转换为mysql日期。

 在处理程序中empDOJ是Date类型的。当我尝试通过SimpleDateFormat对其进行转换时,它没有进行转换。

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

最佳答案

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

关于java - 如何将Rich:Calendar Date转换为MySQL Date,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19269468/

10-13 05:48