对不起,如果我的代码看起来很糟糕,我在编程方面没有那么有经验。我需要以以下格式从 .txt 传输文本:Date-Name-Address-etc..
我正在读取文件,然后用 String.split("-") 拆分字符串。我遇到了循环问题。
try{
File file = new File("testwrite.txt");
Scanner scan = new Scanner(file);
String[] test = scan.nextLine().split("-");
while(r<100){
while(c<6){
data[r][c] = test[c];
test = scan.nextLine().split("-");
c++;
}
r++;
c = 0 ;
}
System.out.println(data[1][5]);
}catch(Exception e){
System.out.println("Error: " + e.getMessage());
}