问题描述
学习做JSP网页,在前一个网页中做一个查询表单,这个网页中处理查询,可是处理到Stringsale_low_price=request.getParameter("sale_low_price");
出现java.lang.NullPointerException错误,百度了一下,说是调用了空对象,于是改为Stringsale_low_price=request.getParameter("sale_low_price");if(sale_low_price==null)sale_low_price="";
可是仍然不好使啊,为啥子?
解决方案
解决方案二:
Strings_sale_low_price=request.getParameter("sale_low_price");
问题搞定了,
解决方案三:
呵呵原来是你自己名称搞错啦
解决方案四:
这些问题应该认真一点
时间: 2024-10-03 12:54:58