java传参请求url
时间: 2024-06-09 22:11:26 浏览: 80
使用java请求json接口数据
在 Java 中,可以使用 HttpURLConnection 类来发送 HTTP 请求并传递参数。以下是一个简单的示例:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
public class HttpUrlConnectionExample {
public static void main(String[] args) {
try {
String url = "http://example.com/api?param1=" + URLEncoder.encode("value1", "UTF-8") + "¶m2=" + URLEncoder.encode("value2", "UTF-8");
HttpURLConnection con = (HttpURLConnection) new URL(url).openConnection();
con.setRequestMethod("GET");
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());
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}
```
在上面的示例中,我们使用了 URLEncoder 类来对参数进行编码,以避免特殊字符引起的问题。然后我们使用 HttpURLConnection 类来创建一个 HTTP 连接,并使用 GET 请求方法发送 HTTP 请求。最后,我们读取响应并打印输出。
阅读全文