统计一篇文章中各英语单词出现的频数

package com.icinfo;

import java.io.*;
import java.util.*;

/**
 * 统计一个文件中各词出现的频率,并打印
 */
public class FileWordCount {
    // 使用HashMap来存储单词的频率
    Map<String, Integer> wordCount = new HashMap<>();

    public static void main(String[] args) {
        HashMap<String, Integer> map = (HashMap<String, Integer>) new FileWordCount()
                .wordCount("C:/Users/hzhb/Desktop/test.txt");

        // 自定义排序
        List<Map.Entry<String, Integer>> list = new LinkedList<>();
        list.addAll(map.entrySet());
        list.sort(Comparator.comparingInt(e -> e.getValue()));
        list.forEach(System.out::println);
    }

    /**
     * @param fileName 文件名(将英文文章复制到一个文件中去)
     */
    public Map<String, Integer> wordCount(String fileName) {
        File file = new File(fileName);
        FileInputStream fis = null;
        try {
            fis = new FileInputStream(file);
        } catch (FileNotFoundException e) {
            System.out.println("文件不存在!");
        }

        BufferedReader bufr = new BufferedReader(new InputStreamReader(fis));
        String s;
        try {
            while ((s = bufr.readLine()) != null) {
                // 移除字符串的前导空白和后尾部空白
                s = s.trim();
                // 正则表达式:以非字母或者是数字为分隔符,进行分割
                // 英文单词以空格为分隔符,将单词分隔
                String[] str = s.split("(\\s+\\W+)|[\\s+\\W+]");
                for (int i = 0; i < str.length; i++) {
                    //并将所有大写字母转换为小写
                    String currentStr = str[i].toLowerCase();
                    // 如果HashMap中已有该值,将值加1
                    if (wordCount.containsKey(currentStr)) {
                        wordCount.put(currentStr, wordCount.get(currentStr) + 1);
                    } else {
                        // 默认初始化该单词的出现次数为1
                        wordCount.put(currentStr, 1);
                    }
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

        // 移除HashMap中的""空字符串
        wordCount.remove("");
        return wordCount;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值