1

なぜこれが機能しないのか、私は完全に途方に暮れています。以前にも同様のループがありましたが、うまくいきました。

try{
    text = new BufferedReader(new FileReader(fileName));

    while ((lineOfText = text.readLine()) != null){
                StringTokenizer tokens = new     StringTokenizer(lineOfText," , .;:\"&!?-_\n\t12345678910[]{}()@#$%^*/+-");
                while (tokens.hasMoreTokens()){
                    countTotalWordsInDocument++;
                    String word = tokens.nextToken();
                    countTotalCharactersInAllWords = countTotalCharactersInAllWords + word.length();
                }
            }
            text.close();
        } catch (IOException e) {
            System.out.println("file not found");
        }
4

0 に答える 0