| Author |
Reading Nested Json in Java
|
Satyajeet Kadam
Ranch Hand
Joined: Oct 19, 2006
Posts: 202
|
|
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?
|
 |
Duran Harris
Ranch Hand
Joined: Nov 09, 2008
Posts: 571
|
|
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
|
===>SCJP 1.5(72%)<===
==>SCWCD1.5(76%)<===
|
 |
 |
|
|
subject: Reading Nested Json in Java
|
|
|