📄 e1061. getting a request header in a jsp page.txt
字号:
A JSP page can access the information in the request header by using the implicit object request. This example retrieves a few items in the request header:
The request method is <%= request.getMethod() %>
The request URI is <%= request.getRequestURI() %>
The request protocol is <%= request.getProtocol() %>
The browser is <%= request.getHeader("user-agent") %>
This example retrieves all the items in the request header:
<%
java.util.Enumeration names = request.getHeaderNames();
while (names.hasMoreElements()) {
String name = (String)names.nextElement();
out.println(name+": "+request.getHeader(name));
}
%>
See also eX X.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -