在jsp中如何调用java类中方法中的一个list

2024-12-29 14:35:22
推荐回答(4个)
回答1:

方法是静态的正确,可是方法中没有return返回值呢。
Java中代码
public class first {
public static List test() throws IOException {
//从文件读取文件到java中
InputStream input = new FileInputStream("d:/a.txt");
byte[] b = new byte[1024];
ArrayList list = new ArrayList();
int n = 0;
while ((n = input.read(b)) != -1) {
for (int i = 0; i < n; i++) {
list.add(b[i]);
}
return list;
}
}
jsp中:
first f=new first();
List list=new ArrayList();
list=f.test();

回答2:

1.新建一个项目,在src文件夹下添加一个包:如:tianaoweb.com;
2.再在包中添加一个类:如
package com;
public class test {
public String sd(){
return "sd";
}
}
3.在默认的首页index.jsp(当然也可以自己新建一个jsp文件)的开头引入
<%@ page import= "tianaoweb.com.* "%>
4.在 中添加相应的java代码片:
如:
<%
String str;
test te=new test();
%>
<%=te.sd() %>

回答3:

简单一点就是1楼的方法
更好一点更符合jsp标准的话 就用el表达式

回答4:

支持楼上