断点

每天进步一点点!
posts - 174, comments - 56, trackbacks - 0, articles - 21

getAttribute和getParameter的区别

Posted on 2010-01-14 20:51 断点 阅读(214) 评论(0)  编辑  收藏 所属分类: Java

getAttribute:

1.getAttribute()得到的数据是object类型,需要强行转换得到相应类型。这是因为它是获取存放在Web应用特定范围中的数据值。
2.request.setAttribute()和getAttribute()方法传递的数据只会存在于Web容器内部,在具有转发关系的Web组件之间共享。即request.getAttribute()方法返回request范围内存在的对象。

getParameter:

1.getParameter得到的都是String类型的,取得你设在表单或url重定向时的值,如:http://demo.jsp?id=88中的88。
2.request.getParameter()方法传递的数据,会从Web客户端传到Web服务器端,代表HTTP请求数据。


posted @ 2009-02-23 17:33 断点 阅读(122) | 评论 (0)

只有注册用户登录后才能发表评论。


网站导航: