[讨论]我是初学者,想请教大侠们我写的这个程序应该怎么写,错在哪里!谢谢了
<%@ page contentType="text/html; charset=GB2312"%>
<%!
static final String pattern = "今天是 yyyy 年 MM 月 dd 日 EEE,现在时间是 a hh 点 mm 分 ss 秒";
%>
<html>
<head>
hello world!
</head>
<body>
<%
while(true)
{
%>
<%= (new java.text.SimpleDateFormat(pattern)).format(new java.util.Date())%>
<%
Thread.currentThread().sleep(500);
}
%>
</body>
</html>