主题:急求:一遇到调用JAVA类的地方为什么不能显示出来呢???
我配置安装好了tomcat和J2SDK,简单的程序都能运行出来,可为什么碰到调用JAVA类的地方在页面上就显示不出来呢???只能显示出相关的文字,但碰到有JAVA类的地方就是空白,也没有什么出错提示。像下边这个程序:
<%@ page contentType="text/html" %>
<html>
<head>
<title>JSP test</title>
</head>
<body>
<% out.print("hello,world"); %>
<% java.util.Date date = new java.util.Date(); %>
Today is: <%=date.getDate()%>
</body>
</html>
运行结果是只有Today is: 却不能出现后边的时间。这是怎么回事呢???急需大家帮忙回复,小妹感激不尽......[em10]
<%@ page contentType="text/html" %>
<html>
<head>
<title>JSP test</title>
</head>
<body>
<% out.print("hello,world"); %>
<% java.util.Date date = new java.util.Date(); %>
Today is: <%=date.getDate()%>
</body>
</html>
运行结果是只有Today is: 却不能出现后边的时间。这是怎么回事呢???急需大家帮忙回复,小妹感激不尽......[em10]