我正在尝试从 CSV 文件创建一个数组。我写了这个,但我不知道如何完成它。
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Scanner;
public class Java {
public static void main (String[] argv) throws IOException {
File file = new File("1.txt");
Scanner fileReader = new Scanner(file);
System.out.printf(fileReader.nextLine());
FileReader.close();
}
}