在jsp页面中输出完整的时间,格式为"年 月 日  时:分:秒"

 <% Date date = new Date();
SimpleDateFormat t = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = t.format(date);
%>
当前时间:<%= time %>

jsp输出当前时间-LMLPHP

05-28 16:40