在Java中發送GET請求并解析響應結果通常涉及以下步驟:
以下是一個簡單的示例代碼,演示如何發送GET請求并解析響應結果:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class GetRequestExample {
public static void main(String[] args) {
try {
URL url = new URL("https://jsonplaceholder.typicode.com/posts/1");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
// 可以將響應結果解析為JSON格式或其他數據格式
// 例如使用JSON庫解析JSON格式的響應數據
// JSONObject jsonObject = new JSONObject(response.toString());
// String title = jsonObject.getString("title");
// System.out.println(title);
con.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
在實際應用中,可以根據響應結果的數據格式選擇合適的解析方式,例如使用JSON庫解析JSON格式的數據,使用XML庫解析XML格式的數據等。