I am Developing an application using Spring MVC and JSP, what am trying to do is fetch some data from a URL, the URL's data is in JSON encoded multidimensional map.
For Example:
{"RT":"32",
"HED":{
"COMPINF":{
"CP":"ISIN_CODE|SECTOR|LANGUAGE_CODE"}}}
I want to parse this code in the same way it came to me, I was trying to use a multidimensional hashmap but can't realy figure out a way.
What would be the best way to parse this data ?