如何使用java代码统计一个字符串在文件中出现的次数呢?
下文笔者讲述使用java代码从指定文件中统计出字符串出现的次数的方法分享,如下所示
使用while循环遍历文件中每一个单词例:
import java.io.BufferedReader; import java.io.FileReader; public final class TestClass { // 工具类中的方法都是静态方式访问的因此将构造器私有不允许创建对象(绝对好习惯) private TestClass() { throw new AssertionError(); } /** * 统计给定文件中给定字符串的出现次数 * * @param filename 文件名 * @param word 字符串 * @return 字符串在文件中出现的次数 */ public static int countWordInFile(String filename, String word) { int counter = 0; try (FileReader fr = new FileReader(filename)) { try (BufferedReader br = new BufferedReader(fr)) { String line = null; while ((line = br.readLine()) != null) { int index = -1; while (line.length() >= word.length() && (index = line.indexOf(word)) >= 0) { counter++; line = line.substring(index + word.length()); } } } } catch (Exception ex) { ex.printStackTrace(); } return counter; } }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。