我来为您详细讲解Java构造HTTP请求的几种方式。
我来为您详细讲解"Java构造HTTP请求的几种方式"。
1. 使用URLConnection发送HTTP请求
使用URLConnection可以方便的发送HTTP请求。下面是一个使用URLConnection发送get请求的示例代码:
public static String sendGetRequest(String url) throws Exception {
URL getUrl = new URL(url);
HttpURLConnection connection = (HttpURLConnection) getUrl.openConnection();
connection.connect();//建立链接
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String lines;
StringBuilder sb = new StringBuilder();
while ((lines = reader.readLine()) != null) {
sb.append(lines);
}
reader.close();
connection.disconnect();
return sb.toString();
}
使用HttpURLConnection发送HttpPost请求的示例代码:
public static String sendPostRequest(String url, String data) throws Exception {
URL postUrl = new URL(url);
HttpURLConnection connection = (HttpURLConnection) postUrl.openConnection();
connection.setRequestMethod("POST");
connection.setDoOutput(true);//如果后台需要传参,则必须设置为true,否则会抛出ProtocolException异常
connection.getOutputStream().write(data.getBytes());
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null) {
sb.append(line);
}
reader.close();
connection.disconnect();
return sb.toString();
}
2. 使用HttpClient发送HTTP请求
使用Apache的HttpClient包发送HTTP请求也是非常方便的,相关的jar包下载地址:http://hc.apache.org/downloads.cgi。下面是一个使用HttpClient发送get请求的示例代码:
public static String sendGetRequestWithHttpClient(String url) throws Exception {
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
HttpEntity entity = response.getEntity();
InputStream content = entity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(content));
String line;
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null) {
sb.append(line);
}
reader.close();
content.close();
return sb.toString();
}
使用HttpClient发送HttpPost请求的示例代码:
public static String sendPostRequestWithHttpClient(String url, String data) throws Exception {
HttpClient client = new DefaultHttpClient();
HttpPost request = new HttpPost(url);
StringEntity stringEntity = new StringEntity(data);
stringEntity.setContentType("application/json");
request.setEntity(stringEntity);
HttpResponse response = client.execute(request);
HttpEntity entity = response.getEntity();
InputStream content = entity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(content));
String line;
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null) {
sb.append(line);
}
reader.close();
content.close();
return sb.toString();
}
以上就是关于使用Java构造HTTP请求的几种方式,希望对您有所帮助。
沃梦达教程
本文标题为:java构造http请求的几种方式(附源码)


猜你喜欢
- vue基础(1)——数据绑定和点击事件 2023-10-08
- 使用AngularJS实现表单向导的方法 2024-01-05
- CSS实现鼠标滑过卡片上浮效果的示例 2024-01-06
- CSS3中的opacity属性使用教程 2024-01-03
- 使用display:none时隐藏DOM元素无法获取实际宽高的解决方法 2022-11-20
- JavaScript CSS修改学习第二章 样式 2023-12-15
- vue keep-alive以及activated,deactivated生命周期的用法 2023-10-08
- 简易日历(innerHTML) 2023-10-27
- HTML入门第一课 了解网页制作 2023-10-26
- vue实现国际化(i18n) 2023-10-08