I am trying to input a file into my program. The input is a file piped to "standard in".
Here is an example input:
3 & Pink Frost&Phillipps, Martin&234933 Se quel guerrier io fossi&Puccini, Giacomo&297539 Non piu andrai&Mozart&234933 M'appari tutt'amor&Flotow, F&252905
My program is about sorting songs/mp3's in order of title, composer, and running time.
- First thing I want to do is to get the topmost integer, which in the example input is "3", and store it in an integer of my own.
- The next line contains the "separator" character which, as you might see, they use to separate the title, composer, and running time for each song.
- The next lines are an indeterminate amount of songs with title, composer, and running time details. What I would like to do with this is to input this into either an ArrayList or a LinkedList so that I can use a comparator to mergesort these using Collections.sort().
This is what I've got so far:
public static void main(String args[]) throws IOException {
ArrayList<Song> songs = new ArrayList<Song>();
//Defines the stdin stream
BufferedReader stdin = new BufferedReader (new InputStreamReader(System.in));
System.out.flush();
int k = new Scanner(System.in).nextInt();
}
So, I hope by now you know what I wish to do.
This is my query: how do I read the different values in? (i.e. the details of each song to put them into my ArrayList.)