内置对象:不需要定义就可以在jsp网页使用的对象
让频繁使用的对象更易用
out 客户端输出
print、println
int getRemain
close
flush 刷新缓冲区
request 得到客户端请求信息
javax.servlet.http.HttpSeverletRequest
<%=request.getMethod()%>得到提交方式<br/>
<%=request.getRequestURI()%>:得到请求的URL统一资源定位符URI统一资源标识符更常用/地址<br/>
<%=request. getProtocol()%>:得到协议名称<br/>
<%=request.getServletPath()%>:得到客户端请求服务器文件的路径<br/>
<%=request.getQueryString()%>:得到URL查询名称,通过get查对post说该方法得不到任何消息<br/>
<%=request.getServerName()%>:得到服务器名称<br/>
<%=request.getServerPort()%>:得到服务器端口号<br/>
<%=request.getRemoteAddr()%>:得到客户端ip<br/>
response 向客户端发送响应
与request对应
重定向:跳转到另外一个页面response.sendrequest,
cookie操作:
session 保存一次会话的过程信息
application
exception 处理异常
page jsp页面本身 this
config
标签:内置,对象,URL,jsp,得到,客户端 From: https://www.cnblogs.com/bky-wang/p/16734506.html