我需要编写读取文件并对文件进行文本分析的代码。它需要做的一件事就是计算文件中有多少单词。我写了一个方法countWords
,但是当我运行程序时它返回0.我使用的文本文件包含以下内容:
不要问你的国家能为你做些什么 问你能为国家做些什么
所以它显然应该返回17而不是0.我做错了什么?
public class TextAnalysis {
public static void main (String [] args) throws IOException {
File in01 = new File("a5_testfiles/in01.txt");
Scanner fileScanner = new Scanner(in01);
System.out.println("TEXT FILE STATISTICS");
System.out.println("--------------------");
System.out.println("Length of the longest word: " + longestWord(fileScanner));
System.out.println("Number of words in file wordlist: " );
countWords(fileScanner);
}
public static String longestWord (Scanner s) {
String longest = "";
while (s.hasNext()) {
String word = s.next();
if (word.length() > longest.length()) {
longest = word;
}
}
return (longest.length() + " " + "(\"" + longest + "\")");
}
public static void countWords (Scanner s) throws IOException {
int count = 0;
while(s.hasNext()) {
String word = s.next();
count++;
}
System.out.println(count);
}
答案 0 :(得分:1)
试试这个吗?
void countWords()
{
String temp;
File path = new File("c:/Bala/");//give ur path
File file = new File(path, "Bala.txt");//give ur filename
FileReader fr = new FileReader(file);
char cbuf[] = new char[(int) file.length()];
fr.read(cbuf);
temp = new String(cbuf);
String count[]=test.split("\\s");
System.out.println("Count:"+t.length);
}
答案 1 :(得分:0)
为你的计数单词方法声明一个新的扫描程序,问题出在s.next();它读取缓冲区中的下一个单词并丢弃之前的单词,因此在调用最长单词方法后,扫描仪缓冲区已用完。
答案 2 :(得分:0)
您已阅读扫描仪并再次阅读。只需创建另一个扫描仪用于计数单词方法
fileScanner = new Scanner(<your file object>);
前
countWords(fileScanner);
希望这有帮助。