首页 > 学院 > 开发设计 > 正文

统计文件中字符串出现的频率

2019-11-06 06:21:25
字体:
来源:转载
供稿:网友
public int countString(String Word,String fileName) throws Exception{int count=0;FileReader fr=new FileReader(fileName);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) {                count++;                line = line.substring(index + word.length());            }}return count;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表