Exemplo n.º 1
0
 /** Request movie details. */
 private void requestMovieDetails() {
   int id = 0;
   System.out.println(LINE_SPACING);
   movieUser.printMovieList();
   boolean done = false;
   while (!done) {
     System.out.print("Enter the id of the movie you want to view details: ");
     try {
       id = Integer.parseInt(sc.nextLine());
     } catch (NumberFormatException e) {
       System.out.println("Please enter a valid number!");
       continue;
     }
     System.out.println(LINE_SPACING);
     done = true;
   }
   boolean isPrinted = movieUser.printMovieDetails(id);
   if (!isPrinted) {
     System.out.println("Movie not found. Please try again!");
   }
 }