真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字

這篇文章主要介紹“怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字”,在日常操作中,相信很多人在怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比峽江網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式峽江網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋峽江地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴。

  • 前言

昨天幫助還在讀大學(xué)的朋友做一道Java題,記錄下來(lái)。題目大致的意思是 統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字

  •  程序設(shè)計(jì)思路

讀取文件肯定要用到 io 獲取到文本的內(nèi)容。

使用正則表達(dá)式讀取到的文本是否是一個(gè)單詞

判斷得到的這個(gè)單詞是否是java關(guān)鍵字

使用 TreeMap 暫存統(tǒng)計(jì)結(jié)果。key 是關(guān)鍵字 value 是出現(xiàn)的次數(shù)

對(duì)TreeMap的value進(jìn)行降序排序,從而取出出現(xiàn)頻率最高的java關(guān)鍵字。

  •  代碼

主要講解都在注釋中

package com.ioword;

import com.alibaba.fastjson.JSON;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * 統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字
 *
 * @author lishuzhen
 * @date 2021/4/15
 */
public class MyStatistic {

    /**
     * 定義正則表達(dá)式匹配單詞
     */
    private static Pattern PATTERN = Pattern.compile("[a-zA-Z]+");

    /**
     * Java常用關(guān)鍵字?jǐn)?shù)組
     */
    private static String[] JAVA_KEYWORD_ARRAY = {"abstract", "assert", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue", "default", "do", "double", "else", "extends", "false", "final", "finally", "float", "for", "goto", "if", "implements", "import", "instanceof", "int", "interface", "long", "native", "new", "null", "package", "private", "protected", "public", "return", "short", "static", "strictfp", "super", "switch", "synchronized", "this", "throw", "throws", "transient", "true", "try", "void", "volatile", "while"};


    /**
     * 返回結(jié)果為文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字
     *
     * @param filePath
     * @return
     * @throws IOException
     */
    public String[] topJavaWords(String filePath) throws IOException {

        // 讀取文件
        String str = readFileToString(filePath);

        // 使用正則表達(dá)式,判斷是否是一個(gè)單詞
        Matcher matcher = PATTERN.matcher(str);

        // 統(tǒng)計(jì)關(guān)鍵字出現(xiàn)的次數(shù)
        Map map = timesKeyWord(matcher);
        System.out.println("統(tǒng)計(jì)結(jié)果 ->" + map);

        // 對(duì)統(tǒng)計(jì)結(jié)果排序
        List> sortList = sort(map);

        return top(sortList, 3);
    }

    /**
     * 讀取文件
     *
     * @return
     */
    public static String readFileToString(String filePath) {
        String str = null;
        try {
            BufferedReader reader = new BufferedReader(new FileReader(filePath));
            StringBuffer buffer = new StringBuffer();
            String line = null;
            while ((line = reader.readLine()) != null) {
                buffer.append(line);
            }
            reader.close();
            // 整個(gè)文件的內(nèi)容 轉(zhuǎn)成 String 類型
            str = buffer.toString();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return str;
    }

    /**
     * 判斷是否是Java關(guān)鍵字
     *
     * @param keyword
     * @return
     */
    public static boolean isJavaKeyWord(String keyword) {
        return (Arrays.binarySearch(JAVA_KEYWORD_ARRAY, keyword) >= 0);
    }

    /**
     * 統(tǒng)計(jì)關(guān)鍵字出現(xiàn)的次數(shù)
     *
     * @param matcher
     * @return
     */
    public static Map timesKeyWord(Matcher matcher) {
        // 用一個(gè)集合存放統(tǒng)計(jì)結(jié)果 key = 關(guān)鍵字 value = 出現(xiàn)的次數(shù)
        Map map = new TreeMap<>();

        String word = "";
        // 出現(xiàn)次數(shù) 默認(rèn)第一次
        int times = 1;
        while (matcher.find()) {
            word = matcher.group();
            System.out.println("拿到單詞 -> " + word);
            // 判斷是否使java關(guān)鍵字
            if (isJavaKeyWord(word)) {
                System.out.println(word + " 是關(guān)鍵字");
                // 如果包含該鍵,單詞出現(xiàn)過(guò)
                if (map.containsKey(word)) {
                    // 得到單詞出現(xiàn)的次數(shù)
                    times = map.get(word);
                    // 出現(xiàn)的次數(shù) + 1
                    map.put(word, times + 1);
                } else {
                    // 否則單詞第一次出現(xiàn),添加到集合中,出現(xiàn)次數(shù) = 1
                    map.put(word, times);
                }
            }
        }
        return map;
    }

    /**
     * 排序
     *
     * @param map
     * @return
     */
    public static List> sort(Map map) {
        List> list = new ArrayList>(map.entrySet());
        Collections.sort(list, new Comparator>() {
            //降序排列
            public int compare(Map.Entry o1, Map.Entry o2) {
                return o2.getValue().compareTo(o1.getValue());
            }
        });
        return list;
    }

    /**
     * 獲取出現(xiàn)次數(shù)高的關(guān)鍵字?jǐn)?shù)組
     *
     * @param list
     * @param topNum
     * @return
     */
    public static String[] top(List> list, int topNum) {
        String[] result = new String[topNum];
        for (int i = 0; i < result.length && i < list.size(); i++) {
            // 取降序排列后的前三個(gè) 就是出現(xiàn)次數(shù)最多的三個(gè)關(guān)鍵字
            result[i] = list.get(i).getKey();
            System.out.println(list.get(i).getKey() + "出現(xiàn)了 " + list.get(i).getValue() + " 次");
        }
        return result;
    }


    public static void main(String[] args) {
        MyStatistic myStatistic = new MyStatistic();
        try {
            // 參數(shù)是任意一個(gè)文件的全路徑,我這里寫(xiě)的是當(dāng)前這個(gè)文件
            String[] strArray = myStatistic.topJavaWords("E:\\IdeaProjects\\xxxxxx\\src\\test\\java\\com\\ioword\\MyStatistic.java");
            System.out.println("topJavaWords 執(zhí)行結(jié)果 " + JSON.toJSONString(strArray));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }


}
  • 執(zhí)行結(jié)果

怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字

到此,關(guān)于“怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


新聞名稱:怎么用Java讀取文件統(tǒng)計(jì)返回文件中包含的出現(xiàn)頻率最高的3個(gè)Java關(guān)鍵字
網(wǎng)頁(yè)路徑:http://weahome.cn/article/jpgdid.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部