
java useBean class "" 路径问题!!
packagebj.com.sun;importjava.io.*;publicclasslistFile{StringBufferallFile;Stringfile;...
package bj.com.sun;
import java.io.*;
public class listFile {
StringBuffer allFile;
String file;
listFile()
{
allFile = new StringBuffer();
}
public StringBuffer getAllFile() {
if(file != null)
{
File F = new File("c:\\",file);
File a[] = F.listFiles();
for(int i = 0 ; i<a.length; i ++)
{
allFile.append(a[i]);
}
}
return allFile;
}
public void setAllFile(StringBuffer allFile) {
this.allFile = allFile;
}
}
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="hh.listFile" %>
<html>
<body>
<jsp:useBean id="ff" class="hh.listFile" scope="page" />
<jsp:setProperty name="ff" property="file" param="file" />
<Form action = "" method = "post">
<input type = "text" name = file>
<input type = "submit" value = "enter">
</Form>
<jsp:getProperty name="ff" property="allFile" />
</body>
</html>
The value for the useBean class attribute hh.listFile is invalid.
useBean值类属性hh. listFile是无效的。 展开
import java.io.*;
public class listFile {
StringBuffer allFile;
String file;
listFile()
{
allFile = new StringBuffer();
}
public StringBuffer getAllFile() {
if(file != null)
{
File F = new File("c:\\",file);
File a[] = F.listFiles();
for(int i = 0 ; i<a.length; i ++)
{
allFile.append(a[i]);
}
}
return allFile;
}
public void setAllFile(StringBuffer allFile) {
this.allFile = allFile;
}
}
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="hh.listFile" %>
<html>
<body>
<jsp:useBean id="ff" class="hh.listFile" scope="page" />
<jsp:setProperty name="ff" property="file" param="file" />
<Form action = "" method = "post">
<input type = "text" name = file>
<input type = "submit" value = "enter">
</Form>
<jsp:getProperty name="ff" property="allFile" />
</body>
</html>
The value for the useBean class attribute hh.listFile is invalid.
useBean值类属性hh. listFile是无效的。 展开
2个回答
展开全部
你在类里的包路径不对,你的路径是package bj.com.sun;啊,不知道你怎么编译通过的
追问
后来都改了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
package bj.com.sun;
类,要和包名相符。
类,要和包名相符。
追问
类要和包名相符,不是这样吗?
追答
文件保存的位置,和包名不相符。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询