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

2023-06-30   


答:代码如下:
   public 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;
  


相关内容:

  1. 写一个函数,要求输入一个字符串和一个字符长度,对该字符串进行分隔
  2. 写一个函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度
  3. Java基础知识面试要点
  4. 新东网科技Java笔试题
  5. 对象的序列化(serialization)类是面向流的,应如何将对象写入到随机存取文件中
  6. Java基础面试题