我正在尝试找出一种从以下文本文件中读取的方法。我能够获得文本文件中的第一个整数,即 numLines。在那之后,我能够从该行中获取第一个整数,但无法成功获取每个单独的字母组。
for(int i=0; i < numLines; i++){
numVariables = Integer.parseInt(fin.next());
for(int z=0; z < numVariables; z++){
String line = fin.next();
int numRules = Integer.parseInt(line.substring(0, 1));
//Everything up until this point is good
//read and store first capital letter of every line
String variable = line.substring(2,3);
//read and store remaining capital letters that correspond to every line separately
}
}
文本文件
3
2 A CC DD
3 A AA z v
2 F f a