写一段http请求的java代码
时间: 2024-05-12 15:07:53 浏览: 139
以下是一个简单的使用Java发送GET请求的示例代码:
```java
import java.net.*;
import java.io.*;
public class HttpGetRequest {
public static void main(String[] args) {
try {
URL url = new URL("http://www.example.com");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer content = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
System.out.println(content.toString());
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
该代码使用 `java.net.HttpURLConnection` 类来发送 `GET` 请求,并从响应中读取内容。你可以将 `http://www.example.com` 替换为你想要请求的实际 URL。
阅读全文