java代码详解 java代码怎么写( 二 )


+ getMethod.getStatusLine());
}
// 拿到get请求头部信息
Header[] headers = getMethod.getResponseHeaders();
for (Header h : headers)
System.out
.println(h.getName() + "------------ " + h.getValue());
// 拿到响应数据
byte[] responseBody = getMethod.getResponseBody(); // 读取为字节数组
// 对响应数据进行字符集编码
response = new String(responseBody, charset);
System.out.println("----------response:" + response);
} catch (HttpException e) {
System.out.println("Please check your provided http address!");
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
// 最后释放http连接
getMethod.releaseConnection();
}
// 返回响应数据
return response;
}
java代码详解的介绍就聊到这里吧 , 感谢你花时间阅读本站内容,更多关于java代码怎么写、java代码详解的信息别忘了在本站进行查找喔 。

推荐阅读