tags:

views:

245

answers:

2
+1  Q: 

json-simple API

Hello Is there a javadoc for json-simple?
I am trying to make a JSONObject from an existing map among other calls and this trial by casting is getting too much, grin. thx.

A: 

The json-simple project on Google Code has links to encoding and decoding examples. I don't see javadoc as such, but the examples should be enough to get you started.

Greg Hewgill
Hi GregThanks. I was hoping for more, I know do it and contribute, grin.
cp
@cp: I just downloaded the json-simple source code and there are *some* javadoc comments present in the source. You could always just run javadoc on it and see what you get.
Greg Hewgill
+1  A: 

As Greg Hewgill said there are some javadoc comments in the source.

I generated the javadoc from source and put it online. I hope it can be of some help.

The project wiki has some interesting pages and version 1.0.2 also had an interesting README file

Alexandre Jasmin
You shouldn't need anything else but that README file ..
OscarRyz