I have the following .csv file:
B00987,58
B00567,43
B00343,59
B00653,25
B00757,31
B00876,40
B00421,62
B00568,78
B00826,79
B00126,93
B00862,62
B00999,12
B00237,68
B00762,85
B00864,49
I need to store all the B00000 numbers in an array to use later. The array should look like:
Position 0 | B00987
Position 1 | B00567
Position 2 | B00343
Position 3 | B00653
....
Position 13 | B00762
Position 14 | B00864
The file path is:
String filepath = "src\\marks.csv";
Any idea how to do this in java? Thanks