在Java中,你可以使用HttpURLConnection
或者第三方庫(如Apache HttpClient、OkHttp等)來調用其他API并獲取響應的字節。下面是一個簡單的示例,展示了如何使用HttpURLConnection
結合其他API(例如:https://api.example.com/data)使用Java的getBytes()
方法:
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 url = new URL("https://api.example.com/data");
// 打開連接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 設置請求方法
connection.setRequestMethod("GET");
// 獲取響應碼
int responseCode = connection.getResponseCode();
// 檢查響應碼是否為200(成功)
if (responseCode == HttpURLConnection.HTTP_OK) {
// 讀取響應內容
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
// 關閉輸入流
in.close();
// 將響應內容轉換為字節數組
byte[] bytes = content.toString().getBytes();
// 處理字節數組
// ...
} else {
System.out.println("請求失敗,響應碼:" + responseCode);
}
// 關閉連接
connection.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
這個示例首先創建一個URL
對象,然后使用openConnection()
方法打開連接。接著,設置請求方法為GET
,并獲取響應碼。如果響應碼為200(成功),則讀取響應內容并將其轉換為字節數組。最后,關閉連接。
注意:這個示例僅用于演示目的,實際應用中可能需要根據API的具體要求進行相應的調整。