Json Simple 简明教程

JSON.simple - JAVA Mapping

JSON.simple 在解码或解析时将实体从左侧映射到右侧,在编码时将实体从右侧映射到左侧。

JSON.simple maps entities from the left side to the right side while decoding or parsing, and maps entities from the right to the left while encoding.

JSON

Java

string

java.lang.String

number

java.lang.Number

true

false

java.lang.Boolean

null

null

array

java.util.List

object

在解码时,java.util.List 的默认具体类是 org.json.simple.JSONArray,而 java.util.Map 的默认具体类是 org.json.simple.JSONObject。

On decoding, the default concrete class of java.util.List is org.json.simple.JSONArray and the default concrete class of java.util.Map is org.json.simple.JSONObject.