Merge pull request 'Develop' (#1) from develop into main

Reviewed-on: #1
Reviewed-by: Hosein Asfiaee
This commit was merged in pull request #1.
This commit is contained in:
2026-07-30 12:25:02 +00:00
3 changed files with 52 additions and 31 deletions
+34 -7
View File
@@ -1,4 +1,5 @@
import java.io.IOException; import java.io.IOException;
import java.util.List;
public class Main { public class Main {
public static void main(String[] args) { public static void main(String[] args) {
@@ -6,15 +7,41 @@ public class Main {
String filePath = "src/main/resources/Movies.html"; String filePath = "src/main/resources/Movies.html";
try { try {
// Instantiate the parser
Parser parser = new Parser(filePath); Parser parser = new Parser(filePath);
// TODO: You can test your code here before you run the unit tests. System.out.println("==================================================");
// Example: Call your sorting methods, iterate through the returned list, System.out.println(" IMDb MOVIE SCRAPER ");
// and print out the movies to see if they match the expected results in the Help folder. System.out.println("==================================================\n");
// sortByTitle
System.out.println("[ MOVIES SORTED BY TITLE ]");
System.out.println("--------------------------------------------------");
List<Movie> sortedByTitle = parser.sortByTitle();
for (Movie movie : sortedByTitle) {
System.out.println("" + movie.toString());
}
// sortByRating
System.out.println("\n[ MOVIES SORTED BY RATING (DESCENDING) ]");
System.out.println("--------------------------------------------------");
List<Movie> sortedByRating = parser.sortByRating();
for (Movie movie : sortedByRating) {
System.out.println("" + movie.toString());
}
//sortByYear
System.out.println("\n[ MOVIES SORTED BY YEAR (DESCENDING) ]");
System.out.println("--------------------------------------------------");
List<Movie> sortedByYear = parser.sortByYear();
for (Movie movie : sortedByYear) {
System.out.println("" + movie.toString());
}
System.out.println("\n==================================================");
System.out.println(" >> Movies parsed successfully! Total movies: " + sortedByTitle.size());
System.out.println("==================================================");
System.out.println("Movies parsed successfully! Total movies: " + parser.sortByTitle().size()); System.out.println("Movies parsed successfully! Total movies: " + parser.sortByTitle().size());
} catch (IOException e) { } catch (IOException e) {
System.err.println("Error reading or parsing the HTML file: " + e.getMessage()); System.err.println("Error reading or parsing the HTML file: " + e.getMessage());
} }
+4 -5
View File
@@ -6,8 +6,9 @@ public class Movie {
private int year; private int year;
public Movie(String title, double rating, int year) { public Movie(String title, double rating, int year) {
// TODO: Initialize the instance variables (this.title, this.rating, this.year) this.title = title;
// with the values passed as arguments to this constructor. this.rating = rating;
this.year = year;
} }
public String getTitle() { public String getTitle() {
@@ -24,9 +25,7 @@ public class Movie {
@Override @Override
public String toString() { public String toString() {
// TODO: Return a string representation of the movie matching the exact required format. return "Movie: " + title + ", Rating: " + rating + ", Year: " + year;
// Example format: "Movie: The Godfather, Rating: 9.2, Year: 1972"
return "";
} }
@Override @Override
+14 -19
View File
@@ -15,38 +15,33 @@ public class Parser {
public List<Movie> sortByTitle() { public List<Movie> sortByTitle() {
List<Movie> sortedByTitle = new ArrayList<>(movies); List<Movie> sortedByTitle = new ArrayList<>(movies);
// TODO: Sort the 'sortedByTitle' list alphabetically by the movie's title. sortedByTitle.sort(Comparator.comparing(Movie::getTitle));
// Hint: You can use Collections.sort() or the List.sort() method along with a custom Comparator.
// Example: Comparator.comparing(Movie::getTitle)
return sortedByTitle; return sortedByTitle;
} }
public List<Movie> sortByRating() { public List<Movie> sortByRating() {
List<Movie> sortedByRating = new ArrayList<>(movies); List<Movie> sortedByRating = new ArrayList<>(movies);
// TODO: Sort the 'sortedByRating' list by the movie's rating in descending order (highest to lowest). sortedByRating.sort(Comparator.comparingDouble(Movie::getRating).reversed());
// Hint: Use Double.compare() in your Comparator or Comparator.comparingDouble().reversed().
return sortedByRating; return sortedByRating;
} }
public List<Movie> sortByYear() { public List<Movie> sortByYear() {
List<Movie> sortedByYear = new ArrayList<>(movies); List<Movie> sortedByYear = new ArrayList<>(movies);
// TODO: Sort the 'sortedByYear' list by the movie's release year in descending order (newest to oldest). sortedByYear.sort(Comparator.comparingInt(Movie::getYear).reversed());
// Hint: Compare the year integers. Use Integer.compare() or Comparator.comparingInt().reversed().
return sortedByYear; return sortedByYear;
} }
private void setUp(String filePath) throws IOException { private void setUp(String filePath) throws IOException {
// TODO: Create a java.io.File object using the given 'filePath'. File file = new File(filePath);
// TODO: Parse the HTML file using Jsoup.parse(file, "UTF-8"). This returns a Document object. Document document = Jsoup.parse(file, "UTF-8");
Elements movieElements = document.getElementsByClass("movie");
// TODO: Extract the list of movie elements from the Document. for (Element element : movieElements) {
// Hint: Use document.select() or document.getElementsByClass() to find all elements with the class "movie". String title = element.select("h3.movie-title").text();
String ratingStr = element.select("span.movie-rating").text().replace("/10", "").trim();
// TODO: Iterate through each movie Element. double rating = Double.parseDouble(ratingStr);
// For each movie element: String yearStr = element.select("span.movie-year").text().trim();
// 1. Find the title element (e.g., using selector "h3.movie-title") and get its text. int year = Integer.parseInt(yearStr);
// 2. Find the rating element (e.g., using selector "span.movie-rating"). Extract the text, remove the "/10" part, and parse it to a double. movies.add(new Movie(title, rating, year));
// 3. Find the year element (e.g., using selector "span.movie-year"). Extract the text and parse it to an int. }
// 4. Create a new Movie object with these values and add it to the 'movies' list.
} }
} }