File myObj = new File("filename.txt");
Scanner myReader = new Scanner(myObj);
while (myReader.hasNextLine()) {
String data = myReader.nextLine(); // The data of the txt file will depends on the format you wanted.
System.out.println(data); // Or you can append data to an array ...
}
Или, если ваш формат данных TXT-файла примерно такой
Имя | Фамилия | 1 Имя1 | Фамилия1 | 2
Затем вы должны разделить каждую строку данных в вашем текстовом файле с помощью разделителя.
File myObj = new File("filename.txt");
Scanner myReader = new Scanner(myObj);
while (myReader.hasNextLine()) {
String[] data = (myReader.nextLine()).split(" | "); // It is already an array
System.out.println(data); // Or you can append data to an array ...
}