jsp输出当前时间的实现代码

在jsp页面中输出完整的时间,格式为"年 月 日 时:分:秒" % Date date = new Date(); SimpleDateFormat t = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"...

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


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

以上就是小编为大家带来的jsp输出当前时间的实现代码全部内容了,希望大家多多支持~

本文标题为:jsp输出当前时间的实现代码

基础教程推荐