写一个方法,输入一个文件名和一个字符串,统计这个字符串在这个文件中出 现的次数。

时间:2022-07-25
本文章向大家介绍写一个方法,输入一个文件名和一个字符串,统计这个字符串在这个文件中出 现的次数。,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。
<span style="font-size:18px;">ublic int countWords(String file, String find) throws Exception
{
int count = 0;
Reader in = new FileReader(file);
int c;
while ((c = in.read()) != -1) {
while (c == find.charAt(0)) {
for (int i = 1; i < find.length(); i++) {
c = in.read();
if (c != find.charAt(i)) break;
if (i == find.length() - 1) count++;
}
}
}
return count;
}
</span>