The two most popular and fully-featured Java JSON libraries according to Maven Repository are:

  • GSON (2.4)
  • Jackson (2.6)

and jars for both are accessible via Maven:

  • Gson requires gson-2.4.jar (group id com.google.code.gson, artifact id gson
  • Jackson requires jackson-databind-2.6.2.jar (group id com.fasterxml.jackson.core, artifact jackson-databind), as well as 2 supporting jars (jackson-core for streaming parser, jackson-annotations for annotation suport)

Jars that you listed are for other lesser commonly used packages (one for json-lib, http://json-lib.sourceforge.net/ is pretty old; other I don't even know what it is), so I would not recommend you use them.

Answer from StaxMan on Stack Overflow
🌐
GitHub
github.com › stleary › JSON-java
GitHub - stleary/JSON-java: A reference implementation of a JSON package in Java. · GitHub
Click here if you just want the latest release jar file. JSON is a light-weight language-independent data interchange format. The JSON-Java package is a reference implementation that demonstrates how to parse JSON documents into Java objects and how to generate new JSON documents from the Java classes.
Starred by 4.7K users
Forked by 2.6K users
Languages   Java
🌐
Maven Repository
mvnrepository.com › artifact › org.json › json › 20140107
Maven Repository: org.json » json » 20140107
January 7, 2014 - HomePage https://github.com/douglascrockford/JSON-java 🔍 Inspect URL · Links · DateJan 07, 2014 · Filespom (4 KB)jar (63 KB)View All · RepositoriesCentralAppodealCloudera PubGluu OXHortonworksKaluzaKnetminerKyligence PublicMulesoftTalend PublicUnvusWSO2 PublicXceptance+10 more ·
Published   Jan 07, 2014
Version   20140107
🌐
SourceForge
sourceforge.net › projects › json-java.mirror
JSON-java download | SourceForge.net
December 24, 2025 - Download JSON-java for free. A reference implementation of a JSON package in Java. JSON is a light-weight language-independent data interchange format. The JSON-Java package is a reference implementation that demonstrates how to parse JSON documents ...
🌐
Google Code
code.google.com › archive › p › json-simple › downloads
Google Code Archive - Long-term storage for Google Code Project Hosting.
Archive · Skip to content · The Google Code Archive requires JavaScript to be enabled in your browser · Google · About Google · Privacy · Terms
🌐
Jar-Download
jar-download.com › home › org.json
Download org.json JAR files with all dependencies
Download org.json JAR files ✓ With dependencies ✓ Documentation ✓ Source code
🌐
Oracle
download.oracle.com › otndocs › jcp › json_p-1_1-final-spec › index.html
JSR-000374 Java API for JSON Processing 1.1 Specification Final Release
Download Instruction: Click the product name or the file name to start the download · If you need assistance with downloads, please contact the JCP PMO. For all other JCP related questions, please see our Frequently Asked Questions (FAQ)
🌐
SourceForge
sourceforge.net › projects › json-lib
Json-lib download | SourceForge.net
Download Json-lib for free. Development of this library has been moved to https://github.com/kordamp/json-lib/ Json-lib is a java library for transforming beans, maps, collections, java arrays and XML to JSON and back again to beans and DynaBeans. It is based on the work by Douglas Crockford ...
Find elsewhere
🌐
Maven Central
repo1.maven.org › maven2 › org › json › json › 20230227
Central Repository: org/json/json/20230227
../ json-20230227-javadoc.jar 2023-02-27 13:38 185665 json-20230227-javadoc.jar.asc 2023-02-27 13:38 659 json-20230227-javadoc.jar.md5 2023-02-27 13:38 32 json-20230227-javadoc.jar.sha1 2023-02-27 13:38 40 json-20230227-sources.jar 2023-02-27 13:38 70293 json-20230227-sources.jar.asc 2023-02-27 13:38 659 json-20230227-sources.jar.md5 2023-02-27 13:38 32 json-20230227-sources.jar.sha1 2023-02-27 13:38 40 json-20230227.jar 2023-02-27 13:38 72591 json-20230227.jar.asc 2023-02-27 13:38 659 json-20230227.jar.md5 2023-02-27 13:38 32 json-20230227.jar.sha1 2023-02-27 13:38 40 json-20230227.pom 2023-02-27 13:38 6461 json-20230227.pom.asc 2023-02-27 13:38 659 json-20230227.pom.md5 2023-02-27 13:38 32 json-20230227.pom.sha1 2023-02-27 13:38 40
🌐
Java2s
java2s.com › Code › Jar › j › Downloadjavajsonjar.htm
java json - Jar File Download
java2s.com | Email: | © Demo Source and Support. All rights reserved
🌐
Maven Repository
mvnrepository.com › artifact › org.json › json
Maven Repository: org.json » json
December 24, 2025 - JSON is a light-weight, language independent, data interchange format. See http://www.JSON.org/ The files in this package implement JSON encoders/decoders in Java. It also includes the capability to convert between JSON and XML, HTTP headers, Cookies, and CDL.
Top answer
1 of 3
26

As far as I can tell (in December 2013) ...

  • Douglas Crockford's master source repository for "json.org" is now on GitHub - https://github.com/douglascrockford/JSON-java. (The GIT history starts in 2010, and the latest change in "master" is a couple of weeks ago.)

  • Paul Merlin (aka "eskatos") has Mavenized the code: https://github.com/eskatos/org.json-java

  • Binary "org.json" JAR files are "regularly" built from Paul Merlin's tree and pushed to Maven Central. You can find them via the "here" link in Paul's README.md file; see the line above.

  • There are other older (pre-2010) binary releases of the "org.json" JAR file in Maven Central under various guises; review the search results for this link" http://mvnrepository.com/search.html?query=org.json.

The copyright dates in the "org.json" source code don't mean much. They clearly aren't updated when the code is updated. However, Douglas Crockford does update the @version javadoc tags, at least in some commits.

UPDATE (December 2016)

As of some time in 2015, Douglas Crockford has passed ownership of the Github repository to Sean Leary. The old Github URL for the project now redirects to https://github.com/stleary/JSON-java. The project continues to be relatively active.

See also: Where has json.org java library gone?

2 of 3
10

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.

🌐
Maven Central
repo1.maven.org › maven2 › org › json › json › 20210307
Central Repository: org/json/json/20210307
../ json-20210307-javadoc.jar 2021-03-08 03:55 175322 json-20210307-javadoc.jar.asc 2021-03-08 03:55 473 json-20210307-javadoc.jar.asc.md5 2021-03-08 03:55 32 json-20210307-javadoc.jar.asc.sha1 2021-03-08 03:55 40 json-20210307-javadoc.jar.md5 2021-03-08 03:55 32 json-20210307-javadoc.jar.sha1 2021-03-08 03:55 40 json-20210307-sources.jar 2021-03-08 03:55 79365 json-20210307-sources.jar.asc 2021-03-08 03:55 473 json-20210307-sources.jar.asc.md5 2021-03-08 03:55 32 json-20210307-sources.jar.asc.sha1 2021-03-08 03:55 40 json-20210307-sources.jar.md5 2021-03-08 03:55 32 json-20210307-sources.jar.
🌐
Google Groups
groups.google.com › g › comp.lang.java.help › c › 8rKxFs5CFAI
where to download org.json package...
upon searching > for "org.json download" I find lots of entries, at drupal, etc.. but I'd > rather download the package from json.org since packages at other places > might include other/different/extra clases.. Gee, I went to <http://www.json.org/> and didn't have trouble finding · <http://www.json.org/java/json.zip> <http://www.json.org/java/org.json.me.zip> <http://json-lib.sourceforge.net/> <http://developer.berlios.de/projects/jsontools/>
🌐
ChillyFacts
chillyfacts.com › download-java-json-jar
Download java-json.jar - ChillyFacts
July 1, 2017 - Download Here. After downloading please extract the downloaded file. java-json.zip · Check the below link to add the Jar in Classpath in Eclipse https://chillyfacts.com/how-to-add-jar-file-in-eclipse-java-project/ Download jsf-impl-2.0.4.jar · Download jsf-api-2.2.0.jar ·
🌐
Java4s
java4s.com › jars required to work with json in java applications
Download JSON Jar Files For Java Applications
February 1, 2012 - what are the jars required to work with json in java applications, download json-lib-2.2.2-jdk15.jar, download ezmorph.jar, download commons-lang.jar, download commons-logging.jar, download commons-beanutils.jar
🌐
Jar-download
jar-download.com
Download java.json JAR files with all dependencies
Download JAR files for java.json ✓ With dependencies ✓ Documentation ✓ Source code