使用LinkedHashMap计算出现次数

时间:2016-03-23 19:42:06

标签: java hashmap linkedhashmap

我需要计算txt文件中相同字符串的出现次数。

我想出的是

public class CountWords {
public File file;
public Scanner scan = null;
public LinkedHashMap<String, Integer> list = new LinkedHashMap<>();

public CountWords(String txt) {
    file = new File(txt);
}

public void textEdit() {

    try {
        scan = new Scanner(file);
    } catch (FileNotFoundException e) {
        System.out.println("----");
    }

    while (scan.hasNextLine()) {
        String line = scan.nextLine();
        if(!list.containsKey(line))
            list.put(scan.next(),1);
        else {
            list.put(line,list.get(line)+1);
        }
    }
    scan.close();
}
public List<String> getResult(){
    textEdit();
    return list;
}
不应该以任何方式更改主要课程(这是要求) 输出应该与输入的顺序相同(这就是使用LinkedHashMap的原因)

public class Main {
    public static void main(String[] args) throws Exception {
        String fname = System.getProperty("user.home") + "/textforwords.txt";
        CountWords cw = new CountWords(fname);
        List<String> result = cw.getResult();
        for (String wordRes : result) {
            System.out.println(wordRes);
        }
    }
}

我错过了一些我无法弄清楚的东西。

1 个答案:

答案 0 :(得分:2)

你需要一个字符串或行数吗?

如果您需要计算字符串数,请尝试以下方法:

while (scan.hasNext()) {
    String line = scan.next();
    if(!list.containsKey(line))
        list.put(line,1);
    else {
        list.put(line,list.get(line)+1);
    }
}

getResult您可以像这样修改:

public List<String> getResult(){
    textEdit();

    ArrayList<String> result = new ArrayList<>();
    for(Map.Entry<String, Integer> entry : list.entrySet()){
        result.add(entry.getKey() + " " + entry.getValue());
    }
    return result;
}

P.S。我无法添加评论