获取HttpURLConnection 响应体内容

简介:

Java 中,有时需要使用HttpURLConnection 模拟浏览器发送http请求,那么如何获取HttpURLConnection 中的响应体呢?

Java代码   收藏代码
  1. private static byte[] connection(HttpURLConnection huc, byte[] sendBytes,  
  2.             String mode) throws Exception {  
  3.         if (mode.equalsIgnoreCase("POST") && sendBytes != null) {  
  4.             huc.getOutputStream().write(sendBytes);  
  5.             huc.getOutputStream().flush();  
  6.             huc.getOutputStream().close();  
  7.         }  
  8.   
  9.         int resCode = huc.getResponseCode();  
  10.   
  11.         if (resCode == HttpURLConnection.HTTP_OK) {  
  12.             int contentLength = huc.getContentLength();  
  13.             if (contentLength > 0) {  
  14. //                
  15.                 System.out.println("httputil,contentLength:"+contentLength);  
  16. //              return readData(huc);  
  17.                 return readDataFromLength(huc, contentLength);  
  18.             } else {  
  19.                 return readData(huc);  
  20.             }  
  21.         }  
  22.         return null;  
  23.     }  
  24.   
  25. private static byte[] readData(HttpURLConnection huc) throws Exception {  
  26.         InputStream in = huc.getInputStream();  
  27.         return FileUtils.readBytes(in);  
  28.   
  29.     }  
  30.   
  31.     private static byte[] readDataFromLength(HttpURLConnection huc,  
  32.             int contentLength) throws Exception {  
  33.   
  34.         InputStream in = huc.getInputStream();  
  35.         BufferedInputStream bis = new BufferedInputStream(in);  
  36.   
  37.         // 数据字节数组  
  38.         byte[] receData = new byte[contentLength];  
  39.         int readLength = 0;  
  40.         // 数据数组偏移量  
  41.         int offset = 0;  
  42.   
  43.         readLength = bis.read(receData, offset, contentLength);  
  44.         // 已读取的长度  
  45.         int readAlreadyLength = readLength;  
  46.         while (readAlreadyLength < contentLength) {  
  47.             readLength = bis.read(receData, readAlreadyLength, contentLength-readAlreadyLength);  
  48.             readAlreadyLength = readAlreadyLength + readLength;  
  49.         }  
  50.   
  51.         return receData;  
  52.     }  
相关文章
|
4月前
|
Shell
HTTP状态码解析:在Haskell中判断响应成功与否
HTTP状态码解析:在Haskell中判断响应成功与否
|
1月前
|
XML JSON JavaScript
HttpGet 请求的响应处理:获取和解析数据
HttpGet 请求的响应处理:获取和解析数据
|
4月前
|
开发者
HTTP状态码是由网页服务器返回的三位数字响应代码,用于表示请求的处理结果和状态
HTTP状态码是由网页服务器返回的三位数字响应代码,用于表示请求的处理结果和状态
54 1
request 获取请求消息体
request 获取请求消息体
|
8月前
|
JSON 前端开发 JavaScript
Java接收前端请求体方式
Java接收前端请求体方式
142 0
|
8月前
Response设置响应数据功能介绍及重定向
Response设置响应数据功能介绍及重定向
82 0
|
存储 前端开发 JavaScript
HTTP进阶,Cookie,响应的回报结果含义,ajax,form表单,不同状态码代表的结果
HTTP进阶,Cookie,响应的回报结果含义,ajax,form表单,不同状态码代表的结果
HTTP进阶,Cookie,响应的回报结果含义,ajax,form表单,不同状态码代表的结果
|
JSON 网络架构 数据格式
通过 REST 请求体|学习笔记
快速学习通过 REST 请求体。
通过 REST 请求体|学习笔记
|
JSON 缓存 前端开发
【Ajax入门技术】如何设置请求头 体 ,利用ajax进行取消请求数据操作,解决重复请求问题,请求超时网络异常以及获取json数据
【Ajax入门技术】如何设置请求头 体 ,利用ajax进行取消请求数据操作,解决重复请求问题,请求超时网络异常以及获取json数据
296 0
【Ajax入门技术】如何设置请求头 体 ,利用ajax进行取消请求数据操作,解决重复请求问题,请求超时网络异常以及获取json数据