Skip to content

Tag: hashmap

Adding in hashmap by while loop but not working

I have the following CSV file and I would like to create a hashmap which the unique key should be the first value of each row and value should be an arraylist containing the information of each line under the first value of this row. Example CSV as below: So ideally, I would like the final ArrayList to be som…

How to Get data from nested LinkedHashMap

How to get the “test” data from this linkedHashMap response.get(“url”) = null response.get(“data.images.original.url”) = null response.get(“data”).get(“images”).get(“original”).get(“url”) toString(); result{data={images={origi…