这个简单的不能再简单的程序为什么出错?
<%@page contentType="text/html;charset=GB2312" %><%!
public void display()
{
out.println("Output");
}
%>
<html>
<head>
<title>example</title>
</head>
<body>
<%
display();
%>
</body>
</html>
错误提示:out不能识别,为什么?小弟初识jsp,请指教!