我正在尝试制作一个读取外部 .txt 文件并对其进行操作的程序。该文件有 5 组不同的数据,每组 4 行(2 为 int,2 为 string)。我需要使用 Scanner 类读取文件,创建一个对象来保存每组数据(编写一个将数据组存储为单个对象的类(我们称之为 ProgramData))。然后我需要创建一个 ProgamData 对象并将其放入一个 ArrayList 中,并对 5 个组中的每一个重复此操作。
我有一个文本文件,我用扫描仪将其读入(我通过在命令行上打印确认我做到了这一点)。我从那里完全迷失了。任何帮助都将不胜感激。
不是这样会有所帮助,但到目前为止,这是我的代码:
import java.io.*;
import java.util.ArrayList;
import java.util.Scanner;
public class Project1
{
public static void main (String[] args) throws IOException
{
File dataFile = new File("C:\\Users/data.txt");
Scanner fileReader = new Scanner(dataFile);
int firstLine = fileReader.nextInt();
int secondLine = fileReader.nextInt();
String whiteSpace = fileReader.nextLine();
String thirdLine = fileReader.nextLine();
String fourthLine = fileReader.nextLine();
ArrayList<String> newArray = new ArrayList<String>();
}
}