问题描述:The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: An exception occurred processing JSP page /content.jsp at line 31
28: currentPage++;
29: }
30: }
31: rows = contactors.size();//从数据库中查询数据总数
32: pageCount = ((rows + pageSize) - 1) / pageSize;
33: firstResult = (currentPage-1) * pageSize;
contactors为一个list对象,里面放的是从数据库里面读出来的一个个联系人对象,测试过contactors里面确实有对象存在,可是提示31行有问题,实在不明白,遇到过相关问题的请帮助一下,谢谢。
如需要看其他代码来解决可以贴出。。。
------解决方案--------------------
rows = contactors.size()
这行运行可能会报空指针,只要稍作处理就可以解决
------解决方案--------------------
代码复制了,没什么问题,除非contactors为空
你可以这样测试
if(contactors!=null){
rows = contactors.size();
}
System.out.println("contactors长度:"+rows);
------解决方案--------------------
看看page-lib这个组件吧 挺不错的
代码迷推荐解决方案:An exception occurred processing JSP page,http://www.daimami.com/search?q=33144
代码迷推荐解决方案:The server encountered an internal error () that prevented it from fulfilling this request.,http://www.daimami.com/search?q=317