I have a dictionary on a website in form of json which looks for example like this:
"types":[{
    "id":"0",
    "name":"value1"
    },{
    "id":"1",
    "name":"value2"
    },{
    "id":"2",
    "name":"value3"
    }]
I cant find any useful example of a method that could help me retrieve that information and put it in, for example, a string array. Maybe anyone of you come across same problem please help!
P.S. I tried method like simplest way to read json from a URL in java with no success.
 
     
    