日期:2014-05-18  浏览次数:20698 次

JSP出问题了.怎么解决?
cannot   resolve   symbol
probably   occurred   due   to   an   error   in   /qcfd/test.jsp   line   51:
StringBuffer   result=new   GetResult.getResults(sDeptID);

------解决方案--------------------
出现了不能解析的符号。

new GetResult.getResults(sDeptID);这叫什么表达式?


至少应该是这样:
new GetResult().getResults(sDeptID);

当然首先要保证这个类在jsp页面被import了,并且保证变量sDepID已经定义了。
------解决方案--------------------
1.确保 GetResult必须在页面import
2.StringBuffer result=new GetResult.getResults(sDeptID);
把new去掉试试