gpt4 book ai didi

java - 从txt文件中读取

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

我编写了一个方法,每次看到新单词时,都会将 1 添加到名为 totalint 中:

public int GetTotal() throws FileNotFoundException{
int total = 0;
Scanner s = new Scanner(new BufferedReader(new FileReader("Particles/Names.txt")));
while(s.hasNext()){
if(s.hasNext()){
total++;
}
}
return total;
}

这样写对吗?

最佳答案

看起来不错。但是内部IF是不必要的,还需要next()方法。下面应该没问题。

public int GetTotal() throws FileNotFoundException{
int total = 0;
Scanner s = new Scanner(new BufferedReader(new FileReader("Particles/Names.txt")));
while(s.hasNext()){
s.next();
total++;
}
return total;
}

关于java - 从txt文件中读取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14116434/

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