request.getParameter("abc")使用来获取上一个页面的名为abc的项或者是URL中传递的参数的值的,只是一个获取的过程(因为值已经在上一个页面设定好了)。至于给request设置参数,方法liuyang054已经说了。
用request.setAttribute(参数,值);String str="12";比如request.setAttribute("count",str);取上面的值用String s=request.getAttribute(count);