json前后端数据交互相关代码

官方JSON介绍 WIKI百科。 JavaScript object notation(记号法)。

JSON: JSON数据具有2种形式,一种是无序的key-value对的集合(对象),另一种是有序的值的集合(数组)。

{string : value, ...} object

{ "birthday": "1996-1-1", "name": "王小二", "comment": "这是注释", "major": [ "Information", "Math" ], "has_girlFriend": false, "age": 22 }

[value, ...] array

[{ "birthday": "1996-1-1", "name": "王小二", "comment": "这是注释", "major": [ "Information", "Math" ], "has_girlFriend": false, "age": 22 }, { "birthday": "1997-1-1" }, "name", "age" ]

value的值形式有7种:

object、array

number、string、(true、false)、null

二、使用JSON-java 类库

在java中,对JSON数据的操作。

主要是JSONObject 类的使用,多种方式来生成JSONObject 对象:

直接new生成JSONObject 对象,通过put方法放入key-value。

通过构造Map对象,通过put方法放入key-value,再传入JSONObject 对象的构造器来生成对象。

通过构造Bean对象,再传入JSONObject 对象的构造器来生成对象。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2be00e25730fe6e597ba81aed96f700c.html