JSON(JavaScript Object Notation) 是一種輕量級的數據交換格式。它基於ECMAScript的一個子集。 JSON採用徹底獨立於語言的文本格式,可是也使用了相似於C語言家族的習慣(包括C、C++、C#、Java、JavaScript、Perl、Python等)。這些特性使JSON成爲理想的數據交換語言。 易於人閱讀和編寫,同時也易於機器解析和生成(網絡傳輸速率)。html
使用基於JavaScript的應用程序,其中包括瀏覽器擴展和網站java
使用JSON格式序列化和結構化的數據傳輸網絡鏈接編程
這主要用於服務器和Web應用程序之間的數據傳輸json
Web服務和API採用JSON格式提供公共數據數組
它能夠用來與現代編程語言瀏覽器
易於讀寫JSON服務器
輕量級的基於文本的交換格式網絡
獨立語言yii
{"firstName":"Brett","lastName":"McLaughlin","email":"aaaa"}
類型 | 描述 |
---|---|
Number | 在JavaScript中的雙精度浮點格式 |
String | 雙引號的反斜槓轉義的Unicode |
Boolean | true 或 false |
Array | 值的有序序列 |
Value | 它能夠是一個字符串,一個數字,真的仍是假(true/false),空(null )等 |
Object | 無序集合鍵值對 |
Whitespace | 能夠使用任何一對中的令牌 |
null | empty |
如下轉自:易百教程網編程語言
JSON.simple實體映射從左側向右側解碼或解析,並映射實體從右側到左側編碼。
JSON | Java |
---|---|
string | java.lang.String |
number | java.lang.Number |
true|false | ava.lang.Boolean |
null | null |
array | java.util.List |
object | java.util.Map |
雖然解碼,默認 java.util.List的具體類是具體類 org.json.simple.JSONArray 和默認 java.util.Map 是org.json.simple.JSONObject。
下面是一個簡單的例子來編碼JSONObject使用Java的JSON對象的一個子類的java.util.HashMap 無序。若是您須要嚴格的順序元素使用方法JSONValue.toJSONString(映射)有序映射實現做爲 java.util.LinkedHashMap等。
import org.json.simple.JSONObject; class JsonEncodeDemo { public static void main(String[] args) { JSONObject obj = new JSONObject(); obj.put("name", "foo"); obj.put("num", new Integer(100)); obj.put("balance", new Double(1000.21)); obj.put("is_vip", new Boolean(true)); System.out.print(obj); } }
雖然上述程序的編譯和執行,這將產生如下結果:
{"balance": 1000.21, "num":100, "is_vip":true, "name":"foo"}
如下是另外一個例子,它顯示了使用Java的JSONObject 的 JSON對象流:
import org.json.simple.JSONObject; class JsonEncodeDemo { public static void main(String[] args) { JSONObject obj = new JSONObject(); obj.put("name","foo"); obj.put("num",new Integer(100)); obj.put("balance",new Double(1000.21)); obj.put("is_vip",new Boolean(true)); StringWriter out = new StringWriter(); obj.writeJSONString(out); String jsonText = out.toString(); System.out.print(jsonText); } }
雖然上述程序的編譯和執行,這將產生如下結果:
{"balance": 1000.21, "num":100, "is_vip":true, "name":"foo"}
下面的例子利用的JSONObject 和JSONArray JSONObject 是一個java.util.Map JSONArray是一個java.util.List,因此能夠對其進行訪問 Map 和List 的標準操做。
import org.json.simple.JSONObject; import org.json.simple.JSONArray; import org.json.simple.parser.ParseException; import org.json.simple.parser.JSONParser; class JsonDecodeDemo { public static void main(String[] args) { JSONParser parser=new JSONParser(); String s = "[0,{\"1\":{\"2\":{\"3\":{\"4\":[5,{\"6\":7}]}}}}]"; try{ Object obj = parser.parse(s); JSONArray array = (JSONArray)obj; System.out.println("The 2nd element of array"); System.out.println(array.get(1)); System.out.println(); JSONObject obj2 = (JSONObject)array.get(1); System.out.println("Field \"1\""); System.out.println(obj2.get("1")); s = "{}"; obj = parser.parse(s); System.out.println(obj); s= "[5,]"; obj = parser.parse(s); System.out.println(obj); s= "[5,,2]"; obj = parser.parse(s); System.out.println(obj); }catch(ParseException pe){ System.out.println("position: " + pe.getPosition()); System.out.println(pe); } } }
雖然上述程序的編譯和執行,這將產生如下結果:
The 2nd element of array {"1":{"2":{"3":{"4":[5,{"6":7}]}}}} Field "1" {"2":{"3":{"4":[5,{"6":7}]}}} {} [5] [5,2]