在Java中使用HttpURLConnection发送HTTP请求的步骤如下:
openConnection()
方法获取URLConnection对象。setRequestMethod()
方法。setRequestProperty()
方法。setDoInput()
和setDoOutput()
方法。connect()
方法。getResponseCode()
方法。getInputStream()
方法。BufferedReader
等方式进行读取。disconnect()
方法。下面是一个简单的示例代码:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpURLConnectionExample {
public static void main(String[] args) {
try {
// 创建URL对象
URL url = new URL("http://example.com");
// 打开URL连接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置请求方法
connection.setRequestMethod("GET");
// 设置请求头信息
connection.setRequestProperty("User-Agent", "Mozilla/5.0");
// 发送请求
connection.connect();
// 获取响应状态码
int statusCode = connection.getResponseCode();
// 判断是否请求成功
if (statusCode == HttpURLConnection.HTTP_OK) {
// 获取响应输入流
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
// 读取响应数据
String line;
StringBuilder response = new StringBuilder();
while ((line = reader.readLine()) != null) {
response.append(line);
}
reader.close();
// 输出响应数据
System.out.println(response.toString());
} else {
System.out.println("请求失败,状态码:" + statusCode);
}
// 关闭连接
connection.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
注意:上述示例中的URL地址为示例,实际使用时需要替换为真实的URL地址。