Possible Duplicate:
Best way to read a text file
In Java I can open a text file like this:
BufferedReader reader = new BufferedReader(new FileReader("file.txt"));
My question is, how do you read from the following file? The first line is a number (830) representing number of words, and the following lines contain the words.
830  
cooking   
English  
weather  
.  
.  
I want to read the words into a string array. But how do I read the data first?
 
     
     
     
     
     
    