我的JSP 文件 代码是
<html>
<head>
<title>HelloWorld</title>
<meta http-equiv="Content-Type" content="text/html;charset=gb2312">
</head>
<body bgcolor="#FFFFFF">
<jsp:useBean id="hw" class="com.Hello" />
<%=hw.getString()%>
</body>
</html>
Bean 代码是:
package com;
import java.util.*;
public class Hello implements java.io.Serializable
{
String s;
public Hello()
{
this.s="hello world";
}
// public void setString(String mystring)
// {
// this.s=mystring;
// }
public String getString()
{
return(this.s);
}
}
为什么我一运行 就出现问题呢
问题是:org.apache.jasper.JasperException: /HelloWorld.jsp(7,2) The value for the useBean class attribute com.Hello is invalid.
清高手 指点一下 了 谢谢
參考答案:输错了