在jsp页面中输出完整的时间,格式为"年 月 日 时:分:秒"
1 <% Date date = new Date(); 2 SimpleDateFormat t = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 3 String time = t.format(date); 4 %> 5 当前时间:<%= time %>
时间: 2024-12-16 02:13:31
在jsp页面中输出完整的时间,格式为"年 月 日 时:分:秒"
1 <% Date date = new Date(); 2 SimpleDateFormat t = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 3 String time = t.format(date); 4 %> 5 当前时间:<%= time %>