Hello A simple question where can I dn the latest org.json jar? The API shows 2010/01/05 for JSONObject and my last dn was 09/06/15. I cant find it on sourceforge or anywhere else. Can someone direct to the latest that will have an API at least as specified as of 2010/01/05? tia.
JSONObject.java from there is marked Copyright 2002.
Matthew Flaschen
2010-04-10 01:32:08
The first result in Google for [latest json java], [json java] and [org.json] all point to that page...
Jason Hall
2010-04-10 01:32:55
I doubt if the copyright date in the comments is changed every time the file is updated. Since that's the official JSON site, I'm reasonably confident that what's offered there is the latest version.Is there some specific change you're looking for that's not in the version I linked to?
Syntactic
2010-04-10 01:55:02
Sorry I was looking for the completed jars. Of course it is obvious the .java is what the latest html api if off of. I could just include and recompile or make my own. Thanks.
cp
2010-04-10 02:44:30
A:
I would recommend using json-simple or one of the other JSON libraries for Java that have developed. This has features the JSON.org API lacks (and I think it will stay that way).
For instance, the json-simple version of JSONObject implements Map and JSONArray implements List. It also has other features, like a SAX-style API.
Matthew Flaschen
2010-04-10 01:39:41
Thanks MatthewI didnt realize it was that advanced. I just want to get it done and explore better more current implementation later. What is great is that community will keep the backward compatibility.
cp
2010-04-10 02:48:23