0
我嘗試將文本文件中的每行存儲到數組中時遇到問題。到目前爲止,我的程序只能讀取文件。這是我到目前爲止。將文本文件中的每行存儲到數組中
public class assignment1 {
public static void main(String[] args) {
System.out.println(System.getProperty("user.dir"));
File fileName = new File("competitors.txt");
try {
Scanner scnr = new Scanner(fileName);
} catch (Exception e) {
System.out.println(e);
}
}
}
你可能想看看這個的其他問題http://stackoverflow.com/a/12857731/6383857 – StaticBeagle