I want these:
JSONObject json1 = { "one": "1", "two": "2", "three": "3" } JSONObject json2 = { "four": "4", "five": "5", "six": "6" }
to Merge like this:
JSONObject result = { "one": "1", "two": "2", "three": "3", "four": "4", "five": "5", "six": "6" }
the method putALL doesn't work, getNames doesn't work either.