亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java怎么獲取response返回內容

小億
393
2023-10-09 19:55:43
欄目: 編程語言

在Java中,可以使用HTTPURLConnection或HttpClient來獲取HTTP響應的內容。

使用HTTPURLConnection的示例代碼如下:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) {
try {
URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 設置請求方法為GET
connection.setRequestMethod("GET");
int responseCode = connection.getResponseCode();
if (responseCode == 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("HTTP request failed. Response Code: " + responseCode);
}
connection.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}

使用HttpClient的示例代碼如下:

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
public class Main {
public static void main(String[] args) {
HttpClient httpClient = new DefaultHttpClient();
try {
HttpGet httpGet = new HttpGet("http://example.com");
HttpResponse response = httpClient.execute(httpGet);
int statusCode = response.getStatusLine().getStatusCode();
if (statusCode == 200) {
HttpEntity entity = response.getEntity();
String responseString = EntityUtils.toString(entity);
System.out.println(responseString);
} else {
System.out.println("HTTP request failed. Response Code: " + statusCode);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
httpClient.getConnectionManager().shutdown();
}
}
}

這些代碼示例使用HTTP GET請求來獲取響應的內容,并將其打印到控制臺。你可以根據實際需要進行修改和適配。

0
临城县| 昭苏县| 东兰县| 阿拉尔市| 永善县| 河津市| 筠连县| 林州市| 奎屯市| 原平市| 长垣县| 荣昌县| 互助| 灵武市| 桐城市| 泌阳县| 丘北县| 临夏市| 崇文区| 柳林县| 邢台县| 铁岭市| 买车| 石泉县| 柳江县| 望江县| 西丰县| 读书| 盘山县| 五大连池市| 讷河市| 沧源| 蒙阴县| 绥宁县| 伊宁县| 五莲县| 乌兰县| 梨树县| 西峡县| 志丹县| 太湖县|