统计一个字符串在文件中出现的次数

 

  1. package com.filecount;
  2. import java.io.FileNotFoundException;
  3. import java.io.FileReader;
  4. import java.io.IOException;
  5. public class FileCount {
  6.     public static int fileCount(String filename, String find) {
  7.         int count = 0;
  8.         int c;
  9.         try {
  10.             FileReader fr = new FileReader(filename);
  11.             while ((c = fr.read()) != -1) {
  12.                 while (c == find.charAt(0)) {
  13.                     for (int i = 1; i < find.length(); i++) {//从第一个开始,因为第0个检查过了
  14.                         c = fr.read();
  15.                         if (c != find.charAt(1))
  16.                             break;
  17.                         if (i == find.length() - 1)
  18.                             count++;
  19.                     }
  20.                 }
  21.             }
  22.             fr.close();
  23.         } catch (FileNotFoundException e) {
  24.             System.out.println("没有发现这个文件");
  25.         } catch (IOException e) {
  26.             // TODO Auto-generated catch block
  27.             e.printStackTrace();
  28.         }
  29.         return count;
  30.     }
  31.     public static void main(String[] args) {
  32.         System.out.println(fileCount("e:/tt.txt""北京"));
  33.     }
  34. }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值