Scanner scanner = new Scanner(new File("abc.txt"));
int [] show = new int [100];
int i = 0;
while(scanner.hasNextInt()){
show[i++] = scanner.nextInt();
}

Remember to catch necessary...