session设置:
session.setAttribute("username",username)
session.setAttribute("password",password)
session获取:
username=session.getAttribute("username")
password=session.getAttribute("password")
request.getParameter("abc")使用来获取上一个页面的名为abc的<input>项或者是URL中传递的参数的值的,只是一个获取的过程(因为值已经在上一个页面设定好了)。至于给request设置参数,方法liuyang054已经说了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)