【发布时间】:2020-11-10 15:14:38
【问题描述】:
如何通过 Java 中的 API 响应获取字符串 Json? 我正在尝试将它们解析为对象,但我不工作
public class tedst {
public static void main(String[] args) {
OkHttpClient client = new OkHttpClient();
Gson gson = new Gson();
Request res = new Request.Builder().url("http://api.openweathermap.org/data/2.5/weather?q=Hanoi&APPID=bffca17bcb552b8c8e4f3b82f64cccd2&units=metric").build();
try {
Response response = client.newCall(res).execute();
Data data = gson.fromJson(response.toString(), Data.class);
} catch (IOException e) {
e.printStackTrace();
}
}
【问题讨论】:
-
拜托,你能接受我给帮助别人的答案吗?