Convert a JSON of different type of objects into java List object -


i have json object stored in db in form of string. using create dynamic form in ui. problem want change values in based on other changes happening on application. suppose updated label field, have json , change here. easy if have stored same type of objects in json, json follows:

[{     "name": "somename",     "xtype": "keyvaluecombo",     "fieldlabel": "some title",     "reftype": "yes_no",     "multiselect": false,     "helptext": ""   },   {     "name": "somename2",     "xtype": "keyvaluecombo",     "fieldlabel": "some title2",     "reftype": "yes_no",     "multiselect": false,     "helptext": ""   },   {     "xtype": "datefield",     "fieldlabel": "joining date",     "name": "joiningdate",     "submitformat": "y-m-d"   },   {     "xtype": "userselectioncombo",     "fieldlabel": "selection",     "name": "selections",     "filterby": {       "functions": [         "select"       ]     }   }] 

now stored string in db, efficient way of changing fieldlabel based on name. have tried working on string , use regular expression, didn't feel right.

you should write bean class, should mapping json object like,

public class abc {      private string name;     private string xtype;     private string fieldlabel;     ........ } 

then should use

import java.lang.reflect.type;  gsonbuilder gsonbuilder = new gsonbuilder(); gson gson = gsonbuilder.create();  type type = new typetoken<list<abc>>() {             }.gettype();  list<abc> abclist = gson.fromjson(conftemplate,                     type); // conftemplate json object db  list of beans.   (abc abcdata : abclist ) {  // can stuff } 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -