我目前正在从文本文件中读取 200 万行,如上一个问题 Java Fastest way to read through text file with 200 万行中所问
现在我将这些信息存储到 HashMap 中,我想通过 TreeMap 对其进行排序,因为我想使用天花板键。下面的方法正确吗?
private HashMap<Integer, String> hMap = new HashMap();
private TreeMap<Integer, String> tMap = new TreeMap<Integer, String>(hMap);