读取一个文件,给定一个字符串,判断这个字符串在文件中出现的次数

Posted 怡安

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取一个文件,给定一个字符串,判断这个字符串在文件中出现的次数相关的知识,希望对你有一定的参考价值。

读取一个文件,给定一个字符串,判断这个字符串在文件中出现的次数,面试笔试经常遇到的问题

public class CountStringTest {
    
    public static void main(String[] args) {
        try {
            //统计E盘下面test.txt中的q字符出现的次数
            System.out.println("E盘下面test.txt中的q字符出现的次数为:");
            System.err.println(count("E:\\\\test.txt", "q"));
           } catch (FileNotFoundException e) {
            e.printStackTrace();
           } catch (IOException e) {
            e.printStackTrace();
           }

    }
     public static int count(String filename, String target)throws FileNotFoundException, IOException {
               FileReader fr = new FileReader(filename);
               BufferedReader br = new BufferedReader(fr);
               StringBuilder strb = new StringBuilder();
               while (true) {
                String line = br.readLine();
                if (line == null) {
                 break;
                }
                strb.append(line);
               }
               String result = strb.toString();
               int count = 0;
               int index = 0;
               while (true) {
                index = result.indexOf(target, index + 1);
                if (index > 0) {
                 count++;
                }else {
                 break;
                }
               }
               br.close();
               return count;
     }
}

 

以上是关于读取一个文件,给定一个字符串,判断这个字符串在文件中出现的次数的主要内容,如果未能解决你的问题,请参考以下文章

file文件操作

用c语言一个程序读取一个整数,判断并显示出这个整数有多少位是7?

C语言 读取数字

批处理中用for指令从文件读取字符串时如何对字符串进行判断

逐行读取文件数据,分析每一行数据与目标字符串的相似度,Python

c语言 如何读取中文字符串