gpt4 book ai didi

java - 返回字符数而不是单词数中的单词数

转载 作者:行者123 更新时间:2023-12-01 07:48:02 26 4
gpt4 key购买 nike

该程序的目的是告诉我一个文件中有多少个单词,但它给了我非常高的数字。暗示它正在读取字符数而不是单词数,或者是一个单独的逻辑错误。

package wordinspection;

import java.io.*;
import java.util.*;

public class WordInspection {
private Scanner reader;
private File file;

public WordInspection(File file) {
this.file = file;
}

public int wordCount() {
String words = readFile();
System.out.println(words);
words.split("\\s+");
return words.length();
}

public String readFile() {
try {
String str = "";

Scanner reader = new Scanner(file, "UTf-8");

while (reader.hasNextLine()) {
str += reader.nextLine();
str += "\n";
}

return str;
} catch (FileNotFoundException e) {

System.out.println("Does nothing");
return "";

}

}

最佳答案

words.split("\\s+"); 不会修改 words;它只是返回一个新数组。您忽略返回值并对原始字符串调用 length() 。将其更改为:

return words.split("\\s+").length;

关于java - 返回字符数而不是单词数中的单词数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45908814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com