学习做JSP网页,在前一个网页中做一个查询表单,这个网页中处理查询,可是处理到
 String  sale_low_price=request.getParameter("sale_low_price");
出现 java.lang.NullPointerException错误,
百度了一下,说是调用了空对象,于是改为   String  sale_low_price=request.getParameter("sale_low_price");
  if (sale_low_price == null)   
  sale_low_price = "";  可是仍然不好使啊,为啥子?