while (scan.hasNextLine()) {
String thisline = scan.nextLine();
totalnumber.countthelines++; //linecount works
for(int i = 0; i < thisline.length();i++){
totalnumber.charactercounter++; //chararacter count works
String [] thewords = thisline.split (" ");
totalnumber.wordcounter = thewords.length; //does not work
}
}
我无法让我的 wordcounter 工作(我已经能够计算字符和行数)。我尝试了许多不同的方法来让它工作,但它总是只计算读入文件最后一行的单词。关于如何让它读取每一行而不是最后一行的任何建议?谢谢