在Java中使用HttpURLConnection發(fā)送HTTP請(qǐng)求的步驟如下:
openConnection()
方法獲取URLConnection對(duì)象。setRequestMethod()
方法。setRequestProperty()
方法。setDoInput()
和setDoOutput()
方法。connect()
方法。getResponseCode()
方法。getInputStream()
方法。BufferedReader
等方式進(jìn)行讀取。disconnect()
方法。下面是一個(gè)簡(jiǎn)單的示例代碼:
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 {
// 創(chuàng)建URL對(duì)象
URL url = new URL("http://example.com");
// 打開URL連接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 設(shè)置請(qǐng)求方法
connection.setRequestMethod("GET");
// 設(shè)置請(qǐng)求頭信息
connection.setRequestProperty("User-Agent", "Mozilla/5.0");
// 發(fā)送請(qǐng)求
connection.connect();
// 獲取響應(yīng)狀態(tài)碼
int statusCode = connection.getResponseCode();
// 判斷是否請(qǐng)求成功
if (statusCode == HttpURLConnection.HTTP_OK) {
// 獲取響應(yīng)輸入流
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
// 讀取響應(yīng)數(shù)據(jù)
String line;
StringBuilder response = new StringBuilder();
while ((line = reader.readLine()) != null) {
response.append(line);
}
reader.close();
// 輸出響應(yīng)數(shù)據(jù)
System.out.println(response.toString());
} else {
System.out.println("請(qǐng)求失敗,狀態(tài)碼:" + statusCode);
}
// 關(guān)閉連接
connection.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
注意:上述示例中的URL地址為示例,實(shí)際使用時(shí)需要替換為真實(shí)的URL地址。