(1)在项目中添加引用
(2)选择浏览按钮
(3)选择json.dll,并点击确定,此时在引用中多出json的引用
(4)在类中添加引用using com.force.json;
(1).使用方法如下:(创建JSONObject,并打印内容)
JSONObject json = new JSONObject();
json.put("sex", "男");
json.put("age", 123);
json.put("name", "张三");
Console.WriteLine(json.ToString());
(2).运行效果如下:
{"sex":"男","age":123,"name":"张三"}
JSONObject json = new JSONObject();
json.Put("sex", "男");
json.Put("age", 123);
json.Put("name", "张三");
JSONArray array = new JSONArray();
array.Put(json);
Console.WriteLine(array.ToString());
(2).运行效果如下:
[{"sex":"男","age":123,"name":"张三"}]
(1).使用方法如下:(创建JSONObject加入到JSONArray 中,再把JSONArray 加入到JSONObject中,并打印内容)
JSONObject rootJson = new JSONObject();
JSONObject json = new JSONObject();
json.Put("sex", "男");
json.Put("age", 123);
json.Put("name", "张三");
JSONArray array = new JSONArray();
array.Put(json);
rootJson.Put("content", array);
Console.WriteLine(rootJson .ToString());
(2).运行效果如下:
{"content":[{"sex":"男","age":123,"name":"张三"}]}
(1).使用方法如下:(解析JSONObject的字符串类型name和整型age字段,并打印内容)
JSONObject json = new JSONObject();
json.Put("sex", "男");
json.Put("age", 123);
json.Put("name", "张三");
Console.WriteLine(json.GetString("name"));
Console.WriteLine(json.GetInt("age"));
(2).运行效果如下:
张三
123
(1).使用方法如下:(从JSONArray 中获取到第1项JSONObject,并解析name的值)
JSONObject json = new JSONObject();
json.Put("sex", "男");
json.Put("age", 123);
json.Put("name", "张三");
JSONArray array = new JSONArray();
array.Put(json);
Console.WriteLine(array.GetJSONObject(0).GetString("name"));
(2).运行效果如下:
张三
7.混合解析
(1).使用方法如下:(从JSONArray 中获取到第1项JSONObject,并解析name的值)
JSONObject json = new JSONObject("{'sex':'男','name':'张三','data':[{'book':'一本书'},{'book':'二本书'}]}");
Console.WriteLine(json.Get("sex"));
Console.WriteLine(json.Get("name"));
JSONArray datas = json.GetJSONArray("data");
Console.WriteLine(datas.GetJSONObject(0).GetString("book"));
(2).运行效果如下:
男
张三
一本书
Github开源地址:
https://github.com/CCwant/ForceJsonDLL下载地址:
http://download.csdn.net/detail/cc_want/9890365