0
我正在學習Java和SpringBoot。試圖製作一個網絡應用程序來檢查天氣。我正在使用來自https://openweathermap.org/api的API。初學者 - Springboot天氣計劃
我不知道如何從API(JSON)檢索數據。有人能告訴我什麼嗎?
public String connectAndResponse(String url) throws IOException {
StringBuilder stringBuilder = new StringBuilder();
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
BufferedReader reader = new BufferedReader(new InputStreamReader(
connection.getResponseCode()==200 ? connection.getInputStream() : connection.getErrorStream()
));
String line = "";
while((line = reader.readLine()) !=null){
stringBuilder.append(line);
}
return stringBuilder.toString();
}
我已經處理JSON在一根繩子上,但我不知道如何使用JSON使用彈簧啓動(它會在語言環境中輸入窗體上工作)。