到目前为止,我一直在逐行读取带有 BufferedReader 的文件,但是,现在我希望能够只存储该行上的第二个单词。我将我的行存储在哈希图中以便于查找。
int i=0;
HashMap<Integer, String> mapHash = new HashMap<Integer, String>();
try {
BufferedReader in = new BufferedReader(new FileReader("file"));
String st;
while ((st = in.readLine()) != null) {
st = st.trim();
//store the lexicon with position in the hashmap
mapHash.put(i, st);
i++;
}
in.close();
} catch (IOException e) {
}
谁能帮助我只阅读每行的第二个单词?
谢谢!