Have you considered using Maven? for instance, if you wanted a JAR to pars JSON you could just include...

http://mvnrepository.com/artifact/org.codehaus.jackson/jackson-core-asl/1.9.6

<dependency>
    <groupId>org.codehaus.jackson</groupId>
    <artifactId>jackson-core-asl</artifactId>
    <version>1.9.6</version>
</dependency>

in a pom.xml, this will give you the jar for JSON.

Or better yet, use the org.json one...

http://mvnrepository.com/artifact/org.json/json

<dependency>
    <groupId>org.json</groupId>
    <artifactId>json</artifactId>
    <version>20090211</version>
</dependency>
Answer from David on Stack Overflow
🌐
Maven Repository
mvnrepository.com › artifact › org.json › json
Maven Repository: org.json » json
December 24, 2025 - There are a large number of JSON packages in Java. Perhaps someday the Java community will standardize on one. Until then, choose carefully. ... aar android apache api arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy io ios javascript jvm kotlin library logging maven ...
🌐
Maven Central
repo1.maven.org › maven2 › org › json › json › 20210307
Central Repository: org/json/json/20210307
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 ...
🌐
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.
Starred by 4.7K users
Forked by 2.6K users
Languages   Java
🌐
Maven Central
central.sonatype.com › artifact › org.json › json
org.json:json - Maven Central
<dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20251224</version> </dependency> ... <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20251224</version> <packaging>bundle</packaging> <name>JSON in Java</name> <description> JSON is a light-weight, language independent, data interchange format.
🌐
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
🌐
Maven Central
repo1.maven.org › maven2 › org › json › json › 20230227
Central Repository: org/json/json/20230227
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-202302...
🌐
Maven Repository
mvnrepository.com › open-source › json-libraries
Maven Repository: JSON Libraries
See http://www.JSON.org/ The files in this package implement JSON encoders/decoders in Java. ... aar android apache api arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy io ios javascript jvm kotlin library logging maven mobile module npm osgi persistence plugin resources rlang sdk server service spring sql starter testing tools ui web webapp
🌐
Maven Repository
mvnrepository.com › artifact › com.googlecode.json-simple › json-simple › 1.1.1
Maven Repository: com.googlecode.json-simple » json-simple » 1.1.1
March 21, 2012 - Current Group · Group · Googlecode JSON Simple · com.googlecode.json-simple · Description · Related Categories · JSON Libraries · JSON-LD Libraries · JSON-RPC Libraries
Published   Mar 21, 2012
Version   1.1.1
Find elsewhere
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.

🌐
Jar-download
jar-download.com › maven-repository-class-search.php
Download dependencies for java class org.json.JSONArray
Here you can download the dependencies for the java class org.json.JSONArray. Use this engine to looking through the maven repository.
🌐
Blogger
javarevisited.blogspot.com › 2017 › 06 › how-to-get-jar-files-of-jackson-libary-for-JSON.html
How to get JAR files of Jackson Libary for JSON Processing
August 1, 2021 - In short, if you decided to use ... jackson-annotations-2.2.3.jar, and jackson-core-2.2.3.jar file. You can download these libraries from Maven central library here....
🌐
Jar-download
jar-download.com › maven-repository-class-search.php
Download dependencies for java class org.json.JSONObject
August 13, 2018 - Here you can download the dependencies for the java class org.json.JSONObject. Use this engine to looking through the maven repository.
🌐
SourceForge
json-lib.sourceforge.net
Maven - Json-lib::Welcome
Json.org | Maven 2 · Introduction · Download · Feature List · Getting Started · Advanced features · Snippets · Groovy integration · Build instructions · Who is using it? FAQ · Changes · Javadoc (jdk13) Javadoc (jdk15) JSON-lib is a java library for transforming beans, maps, collections, java arrays and XML to JSON and back again to beans and DynaBeans.
🌐
Jenkov
jenkov.com › tutorials › java-json › jackson-installation.html
Jackson Installation
February 2, 2019 - You can download the finished JAR files via the central Maven repository.
🌐
Maven Central
repo1.maven.org › maven2 › org › json › json › 20240303
Central Repository: org/json/json/20240303
org/json/json/20240303 · / json-20240303-javadoc.jar 2024-03-03 15:16 210036 json-20240303-javadoc.jar.asc 2024-03-03 15:16 228 json-20240303-javadoc.jar.md5 2024-03-03 15:16 32 json-20240303-javadoc.jar.sha1 2024-03-03 15:16 40 json-20240303-sources.jar 2024-03-03 15:16 77380 json-202403...
🌐
Cliftonlabs
cliftonlabs.github.io › json-simple
json-simple
Download json-simple's latest release jar, javadocs, and source.
🌐
Maven Central Repository
search.maven.org › org.json › json › 20180813
Maven Central Repository Search
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.
🌐
GitHub
github.com › google › gson
GitHub - google/gson: A Java serialization/deserialization library to convert Java Objects into JSON and back · GitHub
Allow pre-existing unmodifiable ...gson</artifactId> <version>2.13.2</version> </dependency> Gson jar downloads are available from Maven Central....
Starred by 24.3K users
Forked by 4.4K users
Languages   Java