| java Programming Glossary: input.jsonJson - Java Object to Json http://stackoverflow.com/questions/11001458/json-java-object-to-json  type application json File json new File src forum11001458 input.json Object myResult unmarshaller.unmarshal json Marshaller marshaller.. true marshaller.marshal myResult System.out  input.json Output MyResult AccountID 12345 User  Name blah blah Email blah@blah.com.. 
 Gson and deserializing an array of objects with arrays in it http://stackoverflow.com/questions/3763937/gson-and-deserializing-an-array-of-objects-with-arrays-in-it  that is an array of object with an array of object . input.json Contents  id 1 name name1 items  id 2 name name2 valid true.. gson new Gson TypeDTO myTypes gson.fromJson new FileReader input.json TypeDTO .class System.out.println gson.toJson myTypes class.. to match the originally provided Java data structure. input.json Contents  id 1 name name1 items  id 2 name name2 valid true.. 
 Jackson and generic type reference http://stackoverflow.com/questions/6846244/jackson-and-generic-type-reference 
 |