我们做了什么? 我们正在使用电影API进行考试,并且正在获取JSON。我们尝试手动提取“内部” JSON部分,我们的方法运行良好。我们正在正确处理所有数据。我们用GSON进行了转换。 但它是嵌套的JSON。我们从这里和其他来源尝试了几种方法来嵌套JSON。我们只想从中获得“结果”部分。我们的守则有什么问题? 这可能只是一个小错误,但我们无法弄清楚。
public void test() {
int status = 0;
String inputLine = "";
System.out.println("Test Methode");
try {
String name = " The Italien Job";
URL url = new URL("https://api.themoviedb.org/3/search/movie?"
+ "api_key=/Notforyou:D/language=en-US&"
+ "query=Spirited%20Away&page=1&include_adult=false");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
status = con.getResponseCode();
System.out.println("Status " + status);
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
StringBuffer content = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
System.out.println("Ausgabe 1 " + inputLine);
if (status == 200) {
System.out.println("Ausgabe 2 " + inputLine);
//Gson gson = new Gson();
//List<Film> filme = gson.fromJson(inputLine.toString(), List.class);
Type listType = new TypeToken<ArrayList<Film>>(){}.getType();
List<Film> yourClassList = new Gson().fromJson(inputLine, listType);
System.out.println("Anzahl Filme " + yourClassList.size());
} else {
System.out.println("Fehler in dem Request");
}
}
in.close();
con.disconnect();
} catch (MalformedURLException ex) {
Logger.getLogger(theMovieDB.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(theMovieDB.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
编辑:Json。我们想要内部。之后的“结果”。请忽略引号。我只是快速输入。
{
„page“ : 1,
„total_results“:1,
„total_pages“:1,
„results“:[
{
„vote_count“:5511,
„id“:129,
„video“: false,
„vote_average“:8.5,
„title“:"Spirited Away",
„popularity“: 24.739224,
„original_language“:“ja“,
„release_date“: „2001-07-20“
}
]
}
我希望有人能提供帮助。 谢谢^^
答案 0 :(得分:1)
您需要首先从具有所有影片的JSON响应中获取结果 JSONArray,还需要将其转换为影片列表。
可以使用以下代码实现:
JsonObject jsonObject = (new JsonParser())
.parse(content.toString().trim()).getAsJsonObject();
JsonArray films = ((JsonArray) jsonObject.get("results"));
Type listType = new TypeToken<ArrayList<Film>>(){}.getType();
List<Film> yourClassList = new Gson().fromJson(films, listType);