尝试在JSP中显示页面上的当前日期但获取奇怪的错误代码。知道我做错了吗?
<% Date today = new Date(); %>
<%!
public String displayDate(Date date){
return date.toString();
}
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Welcome!</title>
</head>
<body>
<h1><center>Today's Date is: <%displayDate(<%=today%>);%></center></h1>
答案 0 :(得分:2)
此
<%displayDate(<%=today%>);%>
应该是
<%= displayDate(today); %>
另外,我建议您从scriptlet迁移。