如何将文本文件放入 Java 中的散列 table?

How do I put text file into a hash table in Java?

我有一个文本文件,我想读取它并将其放入我的散列 table。 然后打印出来。

我写了一段代码,我做错了什么?

public static void main(String[] args) throws FileNotFoundException, IOException {

        Hashtable< Integer, String > hash = new Hashtable< Integer, String >();
        BufferedReader rd = new BufferedReader( new FileReader ("students.txt"));
        String line = "";

        int i = 0;
        while (line != null){
            line = rd.readLine();
            hash.put(i, line);
            i++;
        }
        for ( int j = 0 ; j < hash.size() ; j++){
            System.out.println(hash.get(j));
        }


    }

代码看起来不错。更正下面的一个错误

         BufferedReader br = new BufferedReader(new FileReader ("students.txt"));
         while ((thisLine = br.readLine()) != null) {
            System.out.println(thisLine);
         }       

我正在使用您的代码并且我已经纠正了一些错误...

我认为,这段代码不对,但他有效:)

try{
    Hashtable< Integer, String > hash = new Hashtable< Integer, String >();
    BufferedReader rd = new BufferedReader( new FileReader ("students.txt"));
    String line;

    int i = 0;
    while ((line = rd.readLine()) != null){
        hash.put(i, line);
        i++;
    }
    for ( int j = 0 ; j < hash.size() ; j++){
        System.out.println(hash.get(j));
    }
}catch(FileNotFoundException e){}catch (IOException e) {}