标签:
JSP的内置对象
1,request对象:代表客户端提交的请求,用来获取客户端的相关信息
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>使用request对象</title>
</head>
<body>
<%request.setAttribute("userid","5"); %>
得到请求中的参数userid的值:<%=request.getAttribute("userid") %><br>
字符编码:<%=request.getCharacterEncoding() %><br>
MIME类型:<%=request.getContentType() %><br>
URI的上下文:<%=request.getContextPath() %><br>
URI:<%=request.getRequestURI() %><br>
URL:<%=request.getRequestURL() %><br>
JSP页面的上下文路径:<%=request.getServletPath() %><br>
本地IP:<%=request.getLocalAddr() %><br>
本地机器名:<%=request.getLocalName()%><br>
本地端口号:<%=request.getLocalPort()%><br>
请求方法:<%=request.getMethod()%><br>
userid的值:<%=request.getParameter("userid")%><br>
协议:<%=request.getProtocol()%><br>
查询字符串:<%=request.getQueryString()%><br>
客户端IP:<%=request.getRemoteAddr()%><br>
客户端机器名:<%=request.getRemoteHost()%><br>
客户端端口号:<%=request.getRemotePort()%><br>
</body>
</html>
2,response对象,代表对客户端的响应
3,session 对象,代表客户端与服务端的对话
4,application对象,实现javax.ServletContext接口,代表当前Web应用上下文
5,out对象代表向客户端浏览器输出内容的输出对象
6,pageContext对象,提供了对JSP页面所有作用域和多个页面属性访问的方法。
7,config对象,配置信息包括初始化参数
标签:
原文地址:http://www.cnblogs.com/xss1993/p/5462430.html