码迷,mamicode.com
首页 > 其他好文 > 详细

getParameter和getAttribute的区别

时间:2015-04-29 11:37:31      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:java   getparameter   getattribute   

今天有朋友问这个问题,在这里总结下:

1.getAttribute是取得jsp中 用setAttribute設定的attribute 

2.parameter得到的是string;attribute得到的是object 
3.request.getParameter()方法传递的数据,会从Web客户端传到Web服务器端,代表HTTP请求数据;request.setAttribute()和getAttribute()方法传递的数据只会存在于Web容器内部,在具有转发关系的Web组件之间共享。即request.getAttribute()方法返回request范围内存在的对象,而request.getParameter()方法是获取http提交过来的数据。

 

总结:

getattribute一般在前台用与获取后台转发值

getParameter一般在后台用于获取前台请求值

getParameter  返回的是String 用于读取参数中的值;       
getAttribute   返回的是Object,需进行转换,可用setAttribute设置成任意对象,使用很灵活,可随时用;

getParameter  获取请求值      
getAttribute   获取转发值

 

会用就行 知道在什么地方什么时候用什么方法就哦了。简单整理下 有不对的请留言 共同讨论。

 

java群:79124001 有兴趣交流请加

getParameter和getAttribute的区别

标签:java   getparameter   getattribute   

原文地址:http://blog.csdn.net/java_xiaobin/article/details/45363897

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!