Here's the JSON:
{
    "firstName": "John",
    "lastName": "doe",
    "age": 26,
    "address": {
        "streetAddress": "123 Main street",
        "city": "Anytown",
        "postalCode": "12345"
    },
    "phoneNumbers": [
        {
            "type": "iPhone",
            "number": "123-456-8888"
        },
        {
            "type": "home",
            "number": "123-557-8910"
        }
    ]
}
The question is, in Java, how do you access the address fields? I tried things like address.city, but that didn't work:
String city = (String) jsonObject.get("address.streetAddress");
System.out.println(city);
Would appreciate any suggestions.
 
     
     
     
     
    