users@jersey.java.net

Re: JSON format & javadocs

From: Paul Sandoz <Paul.Sandoz_at_Sun.COM>
Date: Thu, 30 Aug 2007 15:22:51 +0200

Hi Arun,

See here:

http://www.json.org/javadoc/org/json/JSONObject.html
http://www.json.org/javadoc/org/json/JSONArray.html

Arun Gupta wrote:
> Where can I find an online version of Jettison JSON javadocs ?
>
> The following method in a resource:
>
> public JSONObject getJSONMessage() {
> try {
> return new JSONObject().put("greeting1", "Hello World");
> } catch (JSONException ex) {
> ex.printStackTrace();
> }
>
> return null;
> }
>

Hint, you can do the following:

     public JSONObject getJSONMessage() throws JSONException {
         return new JSONObject().put("greeting1", "Hello World");
     }

Paul.


> returns the result as:
>
> {"greeting1" : "Hello World" }
>
> I need to generate:
>
> {greeting1 : "Hello World" }
>
> I looked at the source code at:
>
> http://fisheye.codehaus.org/browse/~raw,r=26/jettison/trunk/src/main/java/org/codehaus/jettison/json/JSONObject.java
>
>
> and could not find anything obvious.
>
> -Arun
>

-- 
| ? + ? = To question
----------------\
    Paul Sandoz
         x38109
+33-4-76188109