fangyidong / json-simple

A simple Java toolkit for JSON. You can use json-simple to encode or decode JSON text.
Apache License 2.0
744 stars 340 forks source link

Nested get #156

Open baubakg opened 1 year ago

baubakg commented 1 year ago

It would be good to be able to use more advnced notions for getting nested items.

For nested JSON:

    {
        "A" : 5,
        "B" : {
                    "B1" : 7
                 }
    }

Given "B.B1" we should get "7".

Since the get is a Map method we can provide a "fetch" method.