首页 > 编程笔记 > Java笔记

JSP application.getAttribute()方法:获取属性值

该方法用于获取由 name 指定名字的 application 对象的属性的值。

语法:

getAttribute(String name)

参数说明:
返回值:

示例

JSP 页面中获取属性名称为 user 的属性值,关键代码如下:
<%
  application.getAttribute("user");
%>

典型应用

在 JSP 页面中将保存在 application 对象中的属性输出到页面
<body>
  <%
     application.setAttribute("userName","大熊猫");//在application对象中保存属性
     out.println("保存在application里的属性值为:"+application.getAttribute("userName"));//在页面中输出属性信息
   %>
</body>

所有教程

优秀文章