📄 requestexamination.jsp
字号:
<html>
<!--
The requestExamination.jsp File. This JSP uses expressions to do
all of the Java work. This is an HTML comment
-->
<%--
The requestExamination.jsp File. This JSP uses expressions to do
all of the Java work. This is a JSP comment
--%>
<body bgcolor="white">
<h1> Request Examination </h1>
<font size="4">
JSP Request Method: <%= request.getMethod() %>
<br>
Server: <%= request.getServerName() %>
<br>
port: <%= request.getServerPort() %>
<br>
address: <%= request.getRemoteAddr() %>
<br>
host: <%= request.getRemoteHost() %>
<br>
Locale: <%= request.getLocale() %>
<hr>
Request URI: <%= request.getRequestURI() %>
<br>
Request Protocol: <%= request.getProtocol() %>
<br>
Servlet path: <%= request.getServletPath() %>
<br>
Browser version <%= request.getHeader("User-Agent") %>
<hr>
</font>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -