私のコードが悪いと思われる場合は申し訳ありませんが、私はプログラミングの経験があまりありません。.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());
}