三叶草 发表于 2021-10-20 23:09:10

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

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

<% Date date = new Date();
SimpleDateFormat t = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = t.format(date);
%>
当前时间:<%= time %>
以上就是小编为大家带来的jsp输出当前时间的实现代码全部内容了,希望大家多多支持CodeAE代码之家~

https://www.uoften.com/program/jsp/20180413/47983.html
页: [1]
查看完整版本: jsp输出当前时间的实现代码