当前位置:  技术问答>java相关

getParameter和getAttribute的区别是什么?

    来源: 互联网  发布时间:2015-04-03

    本文导语:  | getParameter 返回上个页面提交得参数,getAttribute返回系统属性,不同jsp服务器可能不同。 | getParameter可以获得客户端传送给服务器端的参数值。 getAttribute可以得到由setAttribute设置的参数值,就...


|
getParameter 返回上个页面提交得参数,getAttribute返回系统属性,不同jsp服务器可能不同。

|
getParameter可以获得客户端传送给服务器端的参数值。

getAttribute可以得到由setAttribute设置的参数值,就相当于是使用getAttribute得到一个自己定义的参数,而不是从客户端得到的参数。我是这样理解的!

|
getAttribute
public java.lang.Object getAttribute(java.lang.String name)
Returns the value of the named attribute as an Object, or null if no attribute of the given name exists. 
Attributes can be set two ways. The servlet container may set attributes to make available custom information about a request. For example, for requests made using HTTPS, the attribute javax.servlet.request.X509Certificate can be used to retrieve information on the certificate of the client. Attributes can also be set programatically using setAttribute(java.lang.String, java.lang.Object). This allows information to be embedded into a request before a RequestDispatcher call. 

Attribute names should follow the same conventions as package names. This specification reserves names matching java.*, javax.*, and sun.*.

Parameters:
name - a String specifying the name of the attribute
Returns:
an Object containing the value of the attribute, or null if the attribute does not exist

//
getParameter
public java.lang.String getParameter(java.lang.String name)
Returns the value of a request parameter as a String, or null if the parameter does not exist. Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data. 
You should only use this method when you are sure the parameter has only one value. If the parameter might have more than one value, use getParameterValues(java.lang.String). 

If you use this method with a multivalued parameter, the value returned is equal to the first value in the array returned by getParameterValues. 

If the parameter data was sent in the request body, such as occurs with an HTTP POST request, then reading the body directly via getInputStream() or getReader() can interfere with the execution of this method.

Parameters:
name - a String specifying the name of the parameter
Returns:
a String representing the single value of the parameter
See Also: 
getParameterValues(java.lang.String)

|
getParameter只能传递string类型的变量,getAttribute能传递vector!

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间javax.activation类mimetype的类成员方法: getparameters定义及介绍
  • 请问如何判断 request.getparameter 是否有值
  • java命名空间java.util.logging类logrecord的类成员方法: getparameters定义及介绍
  • request.getParameter("textfield")为何无法获取参数???
  • java命名空间java.sql类datatruncation的类成员方法: getparameter定义及介绍
  • 请问用request.getParameter("title")获得参数后如何转成int类型
  • java命名空间javax.activation类mimetype的类成员方法: getparameter定义及介绍
  • getParameter是不是将页面提交的数据保存到数据库的唯一方法?谢谢
  • java命名空间java.security类policy的类成员方法: getparameters定义及介绍
  • 请问为什么我的getparameter没有结果?谢谢
  • java命名空间java.applet接口appletstub的类成员方法: getparameter定义及介绍
  • 怎样用getParameter得到checkbox数组的每一个对象的值?
  • java命名空间javax.xml.transform类transformer成员方法: getparameter定义参考
  • Tomcat and resin ' request.getParameter();
  • java命名空间javax.lang.model.element接口executableelement的类成员方法: getparameters定义及介绍
  • 如何将一个数字的字符串(由:Request.getParameter("...")得到)转换成为浮点数:float 型
  • java命名空间java.applet类applet的类成员方法: getparameter定义及介绍
  • 请教repuest.getparameter的用法
  • java命名空间javax.crypto类cipher的类成员方法: getparameters定义及介绍
  • String a=request.getParameter(???);的这个问题比较复杂......
  • java命名空间java.awt.image.renderable类parameterblock的类成员方法: getparameters定义及介绍
  • 请教各位:上传档案页面取requset.getParameter("idno")值


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3