ArrayList<String> list = new ArrayList<>();
try (Scanner scan = new Scanner(new File("slova.txt"))) {
while (scan.hasNextLine()) {
list.add(scan.nextLine());
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}