A console based application i.e. application which will not have any GUI but has a main method which takes input from console, which simulates “Music Player Application”.
- Play a Song
- Search a Song
- Show all Songs
- Operate on Songs Database
- Play All Songs sort by Song Title
- Play Songs Randomly
- Play a particular Song by getting Song Title
- Fetch the songs from database.
- Display the songs sort by Song Title
- Generate a unique Play ID for every song
- User needs to give the respective Play ID to play that song
- Based upon the user's input play id, The song will get played.
- Fetch the songs from database.
- Display the songs sort by Song Title in table format
- Add songs to the DB
- Edit an existing songs in the DB
- Delete an existing songs in the DB
Main.java - Class to drive the entire Music Player Application and display all the options available in our MX Music Player
Configuration.java - Class to establish a connection to the database
DisplaySongs.java - Class to display all songs in the database
Operation.java - Class to do CRUD Operations of Music in Database
Play.java - Class to do several play operations of Music player
Search.java - Class to do search a song and play the particular song from the Music player