Simple JSON value parsing for Java 8
问题 Java 8 here though I have Jackson and Jettison on my classpath already (as dependencies). I am being given the following string of JSON (as an example): { "widgets": { "email": "someone@example.com", "maxSize": 50 }, "environments": { "LOCAL": { "maxSize": "40" }, "DEV": { "maxSize": "100" } }, "fruits": [ "apples", "oranges" ] } At runtime the values of the fields will be different. I am just trying to read the value of environments/DEV/maxSize from this string; what is the simplest code I