Saturday 16 March 2019

Java org json library tutorial


APIs in org.json library implement JSON encoders/decoders in Java. This library has the capability to convert between JSON and XML, HTTP headers, Cookies, and CDL.

I am going to use below maven dependency.

<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
    <groupId>org.json</groupId>
    <artifactId>json</artifactId>
    <version>20180813</version>
</dependency>

In this tutorial series, you are going to learn following things.
Reference

Previous                                                 Next                                                 Home

No comments:

Post a Comment