import java.io.*;
 
public class CountString {
 
 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;
  }
 
 public static void main(String[] args) {
   try {
    System.out.println(count("D:\\zhang.txt", "a"));
   } catch (FileNotFoundException e) {
    e.printStackTrace();
   } catch (IOException e) {
    e.printStackTrace();
   }
  }
 
}

最近下载更多
一叶知秋-恍如梦  LV1 2022年6月14日
mhkhhhh  LV1 2022年4月21日
王明瑶  LV1 2021年11月16日
12345678Ly  LV1 2021年10月26日
2898369623  LV1 2021年10月11日
99717791  LV1 2021年10月8日
神殇  LV1 2021年8月2日
 LV1 2021年5月25日
冷枫灬无殇  LV1 2021年4月24日
lichaohui  LV1 2021年3月14日
最近浏览更多
weim629  LV3 2022年9月17日
一叶知秋-恍如梦  LV1 2022年6月14日
mhkhhhh  LV1 2022年4月21日
榆晞0929  LV1 2022年1月11日
王明瑶  LV1 2021年11月16日
kinggode  LV14 2021年11月10日
过江小虫  LV1 2021年11月7日
12345678Ly  LV1 2021年10月26日
xinming  LV2 2021年10月25日
2898369623  LV1 2021年10月11日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友