美文网首页
servlet 2.1 例子:查看请求头

servlet 2.1 例子:查看请求头

作者: 长脖子树 | 来源:发表于2017-05-29 20:41 被阅读0次

html文件

<!DOCTYPE html>
<html >
<head>
</head>
<body >
<h2>header display</h2>

<form method = "get" action = "HeaderDisplay">
<input type = "submit" value = "headerDisplay"/>

</form>re</body>
</html>

doGet方法体

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setCharacterEncoding("utf-8");
        response.setContentType("text/html;charset=utf-8");
        
        PrintWriter out  = response.getWriter();
        out.println("<html><body>");
        out.print("请求头消息:<br/>");
        for(String name : Collections.list(request.getHeaderNames())){
            out.printf("<b>%s :</b> %s\n<br/>", name, request.getHeader(name));
        }
        out.println("</body></html>");
    }

打开网页显示的结果

如:http://localhost:8080/servletDemo/HeaderDisplay

请求头消息:
host : localhost:8080
connection : keep-alive
cache-control : max-age=0
upgrade-insecure-requests : 1
user-agent : Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36
accept : text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8
referer : http://localhost:8080/servletDemo/login.html
accept-encoding : gzip, deflate, sdch, br
accept-language : zh-CN,zh;q=0.8

相关文章

  • servlet 2.1 例子:查看请求头

    html文件 doGet方法体 打开网页显示的结果 如:http://localhost:8080/servlet...

  • 网络教程

    http协议包括 请求协议:请求行、请求头、请求体 响应协议:响应行、响应头、响应体 servlet

  • 1.http的概念

    1.http协议入门 2.Http请求 2.1请求行 2.2 多个请求头 2.3HttpServletReques...

  • Servlet

    Servlet简介: Servlet响应客户请求过程: Servlet容器响应客户请求的过程: Servlet生命...

  • Servlet的映射规则

    例子: 若请求url为:localhost:8080/action/*.do 会调用第三个servlet-mapp...

  • Feign传递请求头信息(Finchley版本)

    例子一:Feign如何统一 添加header参数 例子二: 例子三:设置请求头和请求body 注册配置 这个文件放...

  • javaEE之Servlet篇之二

    Servlet执行流程 在讲Servlet的生命周期之前,先讲解一个例子。以get方式请求为例,讲一讲Ser...

  • flask学习笔记(一):回顾HTTP通信

    参考博客 HTTP 请求报文 响应报文 一、HTTP请求报文 1. 起始行 2. 请求头 headers 2.1....

  • Linux diff 使用教程

    1. 关于 diff 2. diff 如何工作2.1. 例子12.2. 例子22.3. 查看diff的 上下文co...

  • Servlet笔记之浏览器请求头信息

    浏览器请求头信息 读取 HTTP 头的方法 下面的方法可用在 Servlet 程序中读取 HTTP 头。这些方法通...

网友评论

      本文标题:servlet 2.1 例子:查看请求头

      本文链接:https://www.haomeiwen.com/subject/hlokfxtx.html