当前位置:   article > 正文

打印Http相应头字段的方法_如何打印httpurlconnection的请求头信息

如何打印httpurlconnection的请求头信息
  /**
     * 获取Http响应头字段
     * 
@param  http
     * 
@return
     
*/
     public   static  Map<String, String> getHttpResponseHeader(HttpURLConnection http) {
        Map<String, String> header =  new  LinkedHashMap<String, String>();
        
         for  ( int  i = 0;; i++) {
            String mine = http.getHeaderField(i);
             if  (mine ==  null break ;
            header.put(http.getHeaderFieldKey(i), mine);
        }
        
         return  header;
    }
    
     /**
     * 打印Http头字段
     * 
@param  http
     
*/
     public   static   void  printResponseHeader(HttpURLConnection http){
        Map<String, String> header = getHttpResponseHeader(http);
        
         for (Map.Entry<String, String> entry : header.entrySet()){
            String key = entry.getKey()!= null  ? entry.getKey()+ ":" : "";
            print(key+ entry.getValue());
        }
    }

     private   static   void  print(String msg){
        Log.i(TAG, msg);
    }
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号