15 lines
478 B
Plaintext
15 lines
478 B
Plaintext
<%@ page import="java.util.Date,java.text.DateFormat" %>
|
|
<%@ page contentType="text/html;charset=gb2312" %>
|
|
<html>
|
|
<head><title>page指令示例</title></head>
|
|
<body>
|
|
<h3 align="center">使用page指令导入java.util.Date类</h3>
|
|
<%
|
|
Date date = new Date();
|
|
String s = DateFormat.getDateInstance().format(date);
|
|
String s2 = DateFormat.getDateInstance(DateFormat.FULL).format(date);
|
|
%>
|
|
<p align="center">现在的时间是:<%=s%></p>
|
|
<p align="center">现在的时间是:<%=s2%></p>
|
|
</body>
|
|
</html> |