------解决方案-------------------- jsp中也是日期格式么?
感觉jsp中设置成String比较合适。然后转换一下。
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = sdf.parse("2008-08-08 12:10:12");//注意这里导入的包是java的还是sql的。 ------解决方案--------------------
DateUtils du = new DateUtils();
Date setStartDate = null;
try {
setStartDate = du.formatDate(getParameter("startDate"),"yyyy-MM-dd");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}