用JAVA写一段带参的GET请求
时间: 2023-09-26 17:07:37 浏览: 82
用Java语言编写一个回调服务,允许第三方使用GET请求问号传参的方式调用
好的,以下是Java中带参的GET请求的示例代码:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
public class HttpGetWithParams {
public static void main(String[] args) throws Exception {
String url = "http://www.example.com/api";
String param1 = "value1";
String param2 = "value2";
// 对参数进行URL编码
param1 = URLEncoder.encode(param1, "UTF-8");
param2 = URLEncoder.encode(param2, "UTF-8");
// 拼接请求URL
String requestUrl = url + "?param1=" + param1 + "¶m2=" + param2;
// 创建URL对象
URL obj = new URL(requestUrl);
// 创建HttpURLConnection对象
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
// 设置请求方法
con.setRequestMethod("GET");
// 发送请求
int responseCode = con.getResponseCode();
System.out.println("Sending GET request to URL : " + requestUrl);
System.out.println("Response Code : " + responseCode);
// 读取响应
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// 打印响应结果
System.out.println(response.toString());
}
}
```
在上面的代码中,我们首先定义了一个URL和两个参数param1和param2。然后使用URLEncoder对参数进行了URL编码,防止参数中包含特殊字符导致请求失败。接着,我们拼接了请求URL,并创建了一个URL对象。然后,我们创建了一个HttpURLConnection对象,并设置请求方法为GET。最后,我们发送了请求,并读取了响应内容,并打印了响应结果。
需要注意的是,上述代码中的URL和参数都是示例数据,实际使用时需要替换成相应的值。另外,如果请求的参数比较多,可以使用Map来存储参数,然后遍历Map来拼接请求URL。
阅读全文