How do I read strings from a text file and store in a hashmap? File contains two columns.
File is like:
FirstName LastName
Pranay Suyash and so on...
|
|
Here's one way:
Given input:
this prints
If your lines look differently, I either suggest you fetch |
|||
|
|
|
In the hash map if you want to map each row in the two columns you can make the first column value as the key and the second column as the value. But the keys should be unique in the Hashmap. If the first column values are unique you can go for the following approach
|
|||
|
|
|
Just in case
then this may work:
Just saw your sample input... You shouldn't put that data in a map, unless it is guaranteed that all firstnames are unique. Otherwise this will happen:
|
|||||
|