I do not know how to take the integer and ignore the strings from the file using scanner. This is what I have so far. I need to know how to read the file token by token. Yes, this is a homework problem. Thank you so much.
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ClientMergeAndSort{
public static void main(String[] args){
 int length = 13;
try{
  Scanner input = new Scanner(System.in);
        System.out.print("Enter the file name with extention : ");
        File file = new File(input.nextLine());
        input = new Scanner(file);
        while (!input.hasNextInt()) {
           input.next();
        }
         int[] arraylist = new int[length];
        for(int i =0; i < length; i++){
        length++;
        arraylist[i] = input.nextInt();
        System.out.print(arraylist[i] + " ");    
        }  
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}
}
 
     
     
     
    