5

I m using GWT and want to convert that jsonString to java POJO object without using any kind of external library. can any one help me .. Any help will be appreciated.. Thank you..

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
kiran
  • 63
  • 1
  • 1
  • 3

1 Answers1

0

http://eclipsesource.com/blogs/2013/04/18/minimal-json-parser-for-java/ us this way so that you can iterate all value and set it to POJO object...

Janak Dhanani
  • 214
  • 4
  • 12
  • thanks for your kind reply.but I dont want to set my POJO objects value manually.It should be done automatically.Is it possible ?? – kiran Apr 21 '14 at 10:17
  • Yes you can set a all value from json object to POJO object when you are iterate a json data, while as set a attribute value and save once you have to save ...thats it – Janak Dhanani Apr 21 '14 at 12:06