您好,我正在读取文件,并将其解析为字符串和双精度型。

然后将解析后的值放入ConcurrentHashMap中。
(字符串是键,而Double是值)。

public class Test {
    public static Map<String, Double> map = new ConcurrentHashMap<String, Double>();

    public void readFromFile() throws IOException {

        String text = "Hello.txt";
        // Hello contains:
        // HELLO 12312
        // BYE 12213
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                new FileInputStream(text), Charset.forName("UTF-8")));

        while ((text = reader.readLine()) != null) {
            // Splits the read line in two where the space char is the
            // separating
            String[] stuff = text.split(" ");

            map.put(stuff[0], Double.parseDouble(stuff[1]));

        }
    }

    public static void main(String[] args) throws IOException {
        Test t = new Test();
    t.readFromFile();
    System.out.println(map);

    }
}


有人告诉我,这不是将File中的值放入Map中的好方法。
Hello.txt有大约400.000条目
所以我有两个问题:

为什么使用这种方法不好?

我该如何改善?

另外,如果这是使用put的完美方法,请也这样说。

最佳答案

根据the answer from @irreputable,ConcurrentHashMap的性能仅比HashMap的性能稍差。因此,除非这里的性能是绝对关键的,或者您确定不需要线程安全,否则您的实现是完美的。

10-07 23:03