📄 header.jsp
字号:
<!-- Standard Header ----------------------------------------------------->
<%@ page import="java.text.*" %>
<%!
// Get a formatted current date and time
public String getCurrentDateTime() {
Date date = new Date();
DateFormat dateFormat =
DateFormat.getDateTimeInstance(DateFormat.FULL,
DateFormat.SHORT);
return dateFormat.format(date);
}
%>
<table cellSpacing=0 cellPadding=0 border=0 width="100%">
<tr>
<td align=middle class="pageTitle">WebLogic Bible JSP Examples</td>
</tr>
<tr>
<td align=middle><%= getCurrentDateTime() %></td>
</tr>
</table>
<hr>
<!-- End Header ---------------------------------------------------------->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -