⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e1061. getting a request header in a jsp page.txt

📁 这里面包含了一百多个JAVA源文件
💻 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 + -