📄 reqmoresysinfo.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" language="java" errorPage="" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>使用Request对象获取系统信息</title>
</head>
<body>
<strong>Request Cookies:</strong>
<font color="#ff0000"><%=request.getCookies()%></font>
<br>
<strong>Request Method:</strong>
<font color="#ff0000"><%=request.getMethod()%></font>
<br>
<strong>Request URI:</strong>
<font color="#ff0000"><%=request.getRequestURI()%></font>
<br>
<strong>Servlet Path:</strong>
<font color="#ff0000"><%=request.getServletPath()%></font>
<br>
<strong>Context Path:</strong>
<font color="#ff0000"><%=request.getContextPath()%></font>
<br>
<strong>Path Info:</strong>
<font color="#ff0000"><%=request.getPathInfo()%></font>
<br>
<strong>Query String:</strong>
<font color="#ff0000"><%=request.getQueryString()%></font>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -