Java lire le fichier et le stocker du texte dans un tableau

Je sais comment lire un fichier avec Java à l'aide de Scanner et Fichier IOException, mais la seule chose que je ne sais pas est comment faire pour stocker le texte dans les fichiers comme un tableau.

Ici est un snippet de mon code:

 public static void main(String[] args) throws IOException{
    //TODO code application logic here

    ////read KeyWestTemp.txt

    //create token1
    String token1 = "";

    //for-each loop for calculating heat index of May - October


    //create Scanner inFile1
    Scanner inFile1 = new Scanner(new File("KeyWestTemp.txt"));

    //while loop
    while(inFile1.hasNext()){

        //how can I create array from text read?

        //find next line
        token1 = inFile1.nextLine();

Voici ce que ma KeyWestTemp.txt fichier contient:

70.3,   70.8,   73.8,   77.0,   80.7,   83.4,   84.5,   84.4,   83.4,   80.2,   76.3,   72.0   
InformationsquelleAutor word word | 2013-11-07