📄 time.jsp
字号:
<%@ page import="java.util.*,java.text.*" %>
<%@ page contentType="text/html;charset=GB2312"%>
<%
Date now=new Date();
java.text.SimpleDateFormat smpDateFormat0 = new java.text.SimpleDateFormat("yyyy年MM月dd日");
SimpleDateFormat smpDateFormat1 = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat smpDateFormat2 = new SimpleDateFormat("MM-dd-yyyy");
SimpleDateFormat smpDateFormat3 = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
String time0=smpDateFormat0.format(now);
String time1=smpDateFormat1.format(now);
String time2=smpDateFormat2.format(now);
String time3=smpDateFormat3.format(now);
out.print("<br>");
out.print(time0+"<br>");
out.print(time1+"<br>");
out.print(time2+"<br>");
%>
<%=time3%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -