Question: Please write the code in JAVA. The CSV file(s) can be found here. I can't post the direct link but you can type it in
Please write the code in JAVA.
The CSV file(s) can be found here. I can't post the direct link but you can type it in to download them.





filebin.net/e4ltct38g807va3w Your VIP client wants to listen to the music tracks in this week's latest song list to review them and get a sense for what they sound like. This time your client wants you to process all the full weeks of this quarter that have already passed so you're given multiple CSV files of the same format. Your client also says they want to listen to songs based on song/track titles in ascending order. It must be in this order. Can you read from multiple input files? Instead of reading just one file at a time, process multiple files. It might help to store the file names in a data structure where myFiles = [week1, week2, week3, weekn] to make it easier to manage, or perhaps you want to make it possible to read any number of files in a directory. Below is an example of how could try to start the organization of code. Java /* Storing one week of data in a queue */ public My Queue extends LinkedList { // constructor creates a linked list that stores songs from one text file public MyQueue(String filename) { // take the filename, open it and convert to queue /* An example for working with multiple text files */ public class MyApp { // The files you'll be reading stored in a data structure to make it iterable myFiles = [weekl, week2, week3, weekn]; ArrayList
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
