// 向对应的url地址发送http请求, 并获取响应的json字符串
public String getHttpResponse(String url) {
// result用于接收连接响应的数据
String result = "";
// in用于读取URL的响应
BufferedReader in = null;
try {
URL realUrl = new URL(url);
// 打开和URL之间的连接
URLConnection connection = realUrl.openConnection();
// 设置通用的请求属性
connection.setRequestProperty("accept", "*/*");
connection.setRequestProperty("connection", "Keep-Alive");
connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 建立实际的连接
connection.connect();
// 定义 BufferedReader输入流来读取URL的响应
in = new BufferedReader(new InputStreamReader(connection.getInputStream(), "UTF-8"));
String line;
while ((line = in.readLine()) != null) {
result += line;
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (in != null) {
in.close();
}
} catch (Exception e2) {
e2.printStackTrace();
}
}
// 通过http请求, 获取的响应数据
return result;
}
相关文章
- 12-06调用第三方接口发送短信
- 12-06记录使用jodd.http发送请求
- 12-06既然有 HTTP 请求,为什么还要用 RPC 调用?(知乎高赞回答)
- 12-06测试开发系列之——接口发送功能(二、get请求&json请求)
- 12-06springboot整合http发送get、post、put、deltet请求
- 12-06接口之http请求头中的content-type属性
- 12-06Net::HTTP 一次添加 cookie, body 发送post请求
- 12-06Arduino ESP8266 发送HTTP请求 获取苏宁服务器时间
- 12-06MFC中发送HTTP或HTTPS请求
- 12-06springboot2 接口化 http 跨项目调用之 fegin