great genius people, need in solving java problem related java. in program making jdbc call , function returns string similar this: [[{prod_cd=42, short_desc=waterfall edge}, {prod_cd=31, short_desc=n/a}, {prod_cd=51, short_desc=ogee edge}]] i need rid of curly braces, commas, , save json object. [ { "prod_cd": " 42", "short_desc": "waterfall edge", }, { "prod_cd": "31", "short_desc": "n/a", }, { "prod_cd": "51", "short_desc": "ogee edge", } ] i highly appreciate help here tried far: @override public map<string, string> getedgecd() { map<string, string> edgecd = new hashmap<string, string>(); map<string,object> temp = new hashmap<string,object>(); try { simplejdbccall fgetedgecd = new simplejdbccall(jdbctemplate) .withsche...