Java uses JSON

Source: Internet
Author: User

1. First, the environment is Intellijidea 16, building Java projects with MAVEN, working with JSON-formatted content, so you need to import Java's external JSON jar package,

There are two types of JSON packages that are generally used: Org.json and Json-lib

    • Org.json Package:

Official website: http://maven.outofmemory.cn/org.json/json/

MAVEN relies on the notation:

<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>

    • Json-lib Package:

Official website: http://json-lib.sourceforge.net/

MAVEN relies on the notation:

<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>

Json-lib has two versions, one is to support jdk13, one is jdk15, and if no attributes are added, Idea will error.

Reference post: http://www.cnblogs.com/yqskj/archive/2013/05/27/3101934.html

http://blog.csdn.net/dmcpxy/article/details/52024011

 

<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20140107</version>
</dependency>

Java uses JSON

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.