My ultimate goal is to create a linked list that compares the number of friends a person has (i.e. in the list below Joe has 4 friends while Kay has 3 (Joe is the most popular). The data for the list is imported from a text file. My question now is how can I read everything but the first string value from the text file?
Right now the text file has the following string data:
Joe Sue Meg Ry Luke Kay Trey Phil George
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.List;
import java.util.*;
public class Main {
public static void main(String[] args) {
List<String[]> list1 = new LinkedList<String[]>();
// Read the file
try {
BufferedReader in = new BufferedReader(new FileReader("C:\\friendsFile"));
String names;
// Keep reading while there is still more data
while ((names = in.readLine()) != null) {
// Line by line read & add to array
String arr[] = names.split(" ");
String first = arr[0];
System.out.print("\nFirst name: " + first);
if (arr.length > 0)
list1.add(arr);
}
in.close();
// Catch exceptions
} catch (FileNotFoundException e) {
System.out.println("We're sorry, we are unable to find that file: \n" + e.getMessage());
} catch (IOException e) {
System.out.println("We're sorry, we are unable to read that file: \n" + e.getMessage());
}
}
}
List<String[]>consider using aMap<String, String[]>where the key is the person's name. Or better yet, use Guava'sMultimap<String, String>which will handle the collection issues for you. – John B Nov 11 '11 at 20:39