Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mukulmantosh/fileparser
Parse the file movies.txt which contains the data for 3451 movies using Java
https://github.com/mukulmantosh/fileparser
Last synced: 17 days ago
JSON representation
Parse the file movies.txt which contains the data for 3451 movies using Java
- Host: GitHub
- URL: https://github.com/mukulmantosh/fileparser
- Owner: mukulmantosh
- License: mit
- Created: 2016-07-23T10:37:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-23T11:04:10.000Z (over 8 years ago)
- Last Synced: 2023-04-28T14:29:45.481Z (over 1 year ago)
- Language: Java
- Size: 1.27 MB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java File Parser
For project you have to parse the file movies.txt which contains the dataset for 3451 movies. Read the movies.txt file and store all the movie data into MySQL database table movies. For each movie, data is collected under 11 columns in movies.txt file.
- Title: Movie name
- Title type: Movie type like documentary, short film, feature film etc.
- Directors: Name of the movie directors
- IMDb Rating: IMDb Rating of the movie (IMDb- Internet Movie Database)
- Runtime (mins): Duration of the movie in minutes
- Year: Year in which movie was released
- Genres: Categories of movie like drama, romance, and thriller
- of IMDb votes: Number of votes it got on IMDb
- IMDb Top 250: Whether a movie is on IMDb top 250 list or not (If listed then Y else N)
- 1001 Must See: Whether a movie is listed under 1001 Must See list (If listed then Y else N)
- URL: IMDb URL where you can see the movie description like http://www.imdb.com/title/tt0453562/### Note:
While parsing movies.txt file, for some of the columns data is not present like for first movie (11:14) in the file movies.txt columns IMDb Top 250 and 1001 Must are just blank. Movies.txt file is a semi-colon (;) separated file where each value is separated from another using semi-colon.Once you load all the movie data into a MySQL database table, write JDBC SQL statements(use Prepared Statements rather than using simple JDBC statements) to get answer of the following queries.
1. Find out the name of Director who directed movie A Walk to Remember
2. List down the names of all the documentary movies
3. List down the names of all documentary movies released in 2000
4. Find out the names of all movies directed by Steven Spielberg
5. Find out the names of all movies directed by Steven Spielberg and were released in 2012
6. Find out the year in which maximum number of movies were released
7. Find out the movie names which belongs to Genre 'romance'### Development
- Java SE & MySQL
License
----MIT