第一种:Timestamp dateTime = new Timestamp(System.currentTimeMillis());
第二种:SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String d = format.format(dateTime);
Date date=format.parse(d);
第三种:jsp中 <td style="text-align:center;" nowrap="nowrap"><fmt:formatDate value="${bean.lrsj}" pattern="yyyy-MM-dd HH:mm:ss"/></td>