I am new to java programming, I am not getting the right example for my below nested json object scenario, Here is my Json object which I have, how can I update the "stackoverflow" values 1 with 100 and 2 with 200 etc.
also stackoveflow is incremental json object it can be {} or {...}, in below i given size of 2 elements . how can I update/replace this jsonobject faster and efficient way without effecting other objects. Thanks Much
{
    "name": "sample",
    "stackoverflow": 
        {
             "one": {
                    "name": 1,
                    "type": "number",
                    "value":"onevalue"  
                },
             "two": {
                    "name": 2,
                    "type": "number",
                     "value":"twovalue" 
                },
        },
}
