付费节点推荐
免费节点
节点使用教程
application对象:
- application对象实现了用户数据的共享,可存放全局变量。
- application开始于服务器的启动,终止于服务器的关闭。
- 在用户的前后连接或不同用户之间的连接中,可以对application对象的同一属性进行操作。
- 在任何地方对application对象属性的操作,都影响到其他用户对此的访问。
- 服务器的启动和关闭决定了application对象的生命。
- application对象是ServletContext类的实例。
常用方法:
- public void setAttribute(String name,Object value) 使用指定名称将对象绑定到此会话。
- public Object getAttribute(String name)返回与此会话中的指定名称绑定在一起的对象,如果没有对象绑定在该名称下,则返回null。
- Enumration getAttributeNames() 返回所有可用属性名称的枚举。
- String getServerInfo() 返回JSP(SERVLET)引擎及版本号。
application.jsp
<%@page import="java.util.Enumeration"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>application内置对象</title>
</head>
<body>
<h1>application对象</h1>
<hr>
<%
application.setAttribute("city", "江西");
application.setAttribute("postcode", "332600");
application.setAttribute("emil", "739696033@qq.com");
%>
所在城市为: <%=application.getAttribute("city")%> <br>
application中的属性有:<%
Enumeration attributes=application.getAttributeNames();
while(attributes.hasMoreElements()){
out.println(attributes.nextElement()+"<br>");
}%>
</body>
</html>
未经允许不得转载:Bcoder资源网 » JSP内置对象之-application对象
评论前必须登录!
登陆 注册