jsp 如何把查询到的多个字段存放到 List<String>中如补充的例子,并且如何在jsp页面使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp 如何把查询到的多个字段存放到 List<String>中如补充的例子,并且如何在jsp页面使用相关的知识,希望对你有一定的参考价值。
String sql="select * from tb_gradeinfo_sub,tb_studentinfo,tb_classinfo,tb_examkinds,tb_subject where tb_gradeinfo_sub.stuid=tb_studentinfo.stuid and tb_studentinfo.classID=tb_classinfo.classID and tb_gradeinfo_sub.kindID=tb_examkinds.kindID and tb_gradeinfo_sub.code=tb_subject.code and tb_studentinfo.classID='"+classID+"'" ;
ResultSet rs=conn.executeQuery(sql);
List<String> chengjilist = new ArrayList<String>();
try
while(rs.next())
这里该怎么写(要存放好几个字段)
如rs.getString("stuid"),
rs.getString("className")等等
catch (Exception e)
e.printStackTrace();
String[] strs = new String[5];
字段1赋值给strs[0];
这样一次类推, 有多少个字段数据长度就是几.
然后把数组存放到list中.
页面就遍历这个list.
每一个就是数组. 用下标就可以取值. 参考技术A 两种方法,一种是用实体类。一种是用Map对象。追问
我是新手,求代码例子
追答我只授之以渔,不授之以鱼。一味要现成的,对你没好处。新手二字不能算理由。
以上是关于jsp 如何把查询到的多个字段存放到 List<String>中如补充的例子,并且如何在jsp页面使用的主要内容,如果未能解决你的问题,请参考以下文章
java中如何获取我在ACCESS数据库中查询到的某个字段所对应的主键的值?