implement displayMoviesByGenre method

This commit is contained in:
2026-04-29 07:09:17 +03:30
parent 34e97c6a5b
commit 83287eeb84
+27 -3
View File
@@ -103,10 +103,34 @@ public class MovieService {
* PUT ALL PARSING CODE INSIDE try-catch * PUT ALL PARSING CODE INSIDE try-catch
*/ */
public void displayMoviesByGenre(Long genreId, Long page) { public void displayMoviesByGenre(Long genreId, Long page) {
// TODO: Write your code here
// All parsing code must be inside try-catch String jsonResponse = getMoviesByGenreList(genreId, page);
if (jsonResponse == null) {
System.out.println("Failed to get genres");
return;
}
try { try {
// Your code here JsonObject rootObject = JsonParser.parseString(jsonResponse).getAsJsonObject();
JsonArray moviesArray = rootObject.getAsJsonArray("movies");
Type movieListType = new TypeToken<ArrayList<Movie>>(){}.getType();
Gson gson = new Gson();
List<Movie> movies = gson.fromJson(moviesArray, movieListType);
int total = rootObject.get("total").getAsInt();
int totalPages = rootObject.get("total_pages").getAsInt();
for(int i=0 ; i<movies.size() ; i++) {
Movie movie = movies.get(i);
System.out.println("ID: " + movie.getId() + " | " + movie.getTitle() +
" (" + movie.getYear() + ")");
}
System.out.println("\nTotal: " + total + " | " + "Total Pages: " + totalPages);
} catch (Exception e) { } catch (Exception e) {
System.err.println("ERROR: " + e.getMessage()); System.err.println("ERROR: " + e.getMessage());