• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Reading Nested Json in Java

 
Ranch Hand
Posts: 224
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Q1) I passing nested Json to a Servlet.Format of my Json


I am reading this Json in a servlet




Output






Q2) How can i iterate this Json,to get the values of SelectType,create-new...etc?

 
Ranch Hand
Posts: 608
Eclipse IDE Spring Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It depends whether you wish to manipulate the JSON on the client or server-side.

If you want to access the values in Java code you will need to download the json-lib.jar from json.org and add it to you're classpath.There is documentation on the site to assist you.You can give you're jsonString to the constructor of the JSONArray class and then use it's retrieval methods to access the values.

If you want to access the values in client-side javascript you can see examples of how to do it in plain javascript here :parsing JSON in javascript


 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic