zoukankan      html  css  js  c++  java
  • Java获取Http响应Header信息

    本文中演示如何通过URLConnection获取Http响应Header信息

    1.从响应中获得Header信息

                    
    URL obj = new URL("http://www.qiyadeng.com");
                    URLConnection conn = obj.openConnection();
                    Map<String, List<String>> map = conn.getHeaderFields();

    2.从响应Header中获取Server信息

                   Map<String, List<String>> map = conn.getHeaderFields();
                    List<String> server = map.get("Server");

    完整的示例

    package com.qiyadeng.http;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.List;
    import java.util.Map;
    public class GetHttpResponseHeader {
    public static void main(String[] args) {
    try {
                    URL obj = new URL("http://www.qiyadeng.com");
                    URLConnection conn = obj.openConnection();
                    Map<String, List<String>> map = conn.getHeaderFields();
                    System.out.println("显示响应Header信息\n");
    for (Map.Entry<String, List<String>> entry : map.entrySet()) {
                            System.out.println("Key : " + entry.getKey() +
    " ,Value : " + entry.getValue());
                    }
                    System.out.println("\n使用key获得响应Header信息 \n");
                    List<String> server = map.get("Server");
    if (server == null) {
                            System.out.println("Key 'Server' is not found!");
                    } else {
    for (String values : server) {
                                    System.out.println(values);
                            }
                    }
            } catch (Exception e) {
                    e.printStackTrace();
            }
      }
    }

    输出

    显示响应Header信息...

    Key : null ,Value : [HTTP/1.1 200 OK]
    Key : X-Pingback ,Value : [http://www.qiyadeng.com/xmlrpc.php]
    Key : Date ,Value : [Sun, 10 Mar 2013 12:16:26 GMT]
    Key : Transfer-Encoding ,Value : [chunked]
    Key : Connection ,Value : [close]
    Key : Content-Type ,Value : [text/html; charset=UTF-8]
    Key : Server ,Value : [Apache/2.2.3 (CentOS)]
    Key : X-Powered-By ,Value : [PHP/5.2.17]
    
    使用key获得响应Header信息 ...Apache/2.2.3 (CentOS)


    原创文章,转载请注明: 转载自http://www.qiyadeng.com/

    本文链接地址: Java获取Http响应Header信息

  • 相关阅读:
    大数据介绍
    Android系统手机端抓包方法
    svn warning W205000 :windows下 SVN idea 配置 代理配置
    idea tomcat 启动日志乱码
    翻译 API 一句话API
    git push proxy 取消不掉 can not prox....
    webpack+vue搭建vue项目
    java 多线程
    实时监听 JavaScript改变 input 值 input输入框内容 value 变化实时监听
    leetcode 数组
  • 原文地址:https://www.cnblogs.com/qiyadeng/p/2956557.html
Copyright © 2011-2022 走看看