上面提到的第四篇文章最后有个解析数组的例子,出现了 .First.First.First.First.Children(); 我表示很晕,网上找的的例子大多数是关于JObject的,但是我很少看到JArray的例子,其实解析json数组的时候是需要用到JArray的,复杂数据实际上是JObject和JArray的组合:{}对应的是JObject,而[]对应的是JArray。举个json的例子吧(数据来源是腾讯地图api的示例,解析的是北京某处的地理信息和周边信息,略长啊)

引用:  Newtonsoft.Json

  1. {
  2. "status": 0,
  3. "message": "query ok",
  4. "result": {
  5. "address": "北京市海淀区彩和坊路海淀西大街74号",
  6. "address_component": {
  7. "province": "北京市",
  8. "city": "北京市",
  9. "district": "海淀区",
  10. "street": "彩和坊路",
  11. "street_number": "海淀西大街74号"
  12. },
  13. "pois": [
  14. {
  15. "id": "3629720141162880123",
  16. "title": "中国技术交易大厦",
  17. "address": "北京市海淀区北四环西路66号",
  18. "category": "房产小区;商务楼宇",
  19. "location": {
  20. "lat": "39.984122",
  21. "lng": "116.307484"
  22. },
  23. "_distance": "3.6"
  24. },
  25. {
  26. "id": "2845372667492951071",
  27. "title": "中国技术交易大厦A座",
  28. "address": "北京市海淀区北四环西路66号",
  29. "category": "房产小区;商务楼宇",
  30. "location": {
  31. "lat": "39.984273",
  32. "lng": "116.307577"
  33. },
  34. "_distance": "15.2"
  35. },
  36. {
  37. "id": "12925244666643621769",
  38. "title": "中国技术交易大厦B座",
  39. "address": "北京市海淀区北四环西路66号",
  40. "category": "房产小区;商务楼宇",
  41. "location": {
  42. "lat": "39.983902",
  43. "lng": "116.307588"
  44. },
  45. "_distance": "29.3"
  46. },
  47. {
  48. "id": "7472400256925846331",
  49. "title": "中国化工博物馆",
  50. "address": "海淀区北四环西路62号中国化工集团大厦3楼(海淀桥西)",
  51. "category": "文化场馆;博物馆",
  52. "location": {
  53. "lat": "39.984582",
  54. "lng": "116.308877"
  55. },
  56. "_distance": "127.5"
  57. },
  58. {
  59. "id": "16243165360295251323",
  60. "title": "贝塔咖啡",
  61. "address": "北京市海淀区北四环西路66号中关村第三极大厦1层西北侧",
  62. "category": "娱乐休闲;咖啡厅",
  63. "location": {
  64. "lat": "39.984391",
  65. "lng": "116.307380"
  66. },
  67. "_distance": "28.0"
  68. },
  69. {
  70. "id": "7246616758286733108",
  71. "title": "基督教堂",
  72. "address": "北京市海淀区彩和坊路9号",
  73. "category": "旅游景点;教堂",
  74. "location": {
  75. "lat": "39.983146",
  76. "lng": "116.307507"
  77. },
  78. "_distance": "112.2"
  79. },
  80. {
  81. "id": "8627298709465036679",
  82. "title": "北京三木和商店",
  83. "address": "北京市海淀区北四环西路66号中关村文化商厦三层D-006-009单元",
  84. "category": "购物;综合商场",
  85. "location": {
  86. "lat": "39.984093",
  87. "lng": "116.307983"
  88. },
  89. "_distance": "42.6"
  90. },
  91. {
  92. "id": "12020256857742021617",
  93. "title": "图书城昊海楼",
  94. "address": "北京市海淀区海淀西街36号",
  95. "category": "房产小区;住宅区;住宅小区",
  96. "location": {
  97. "lat": "39.984400",
  98. "lng": "116.306794"
  99. },
  100. "_distance": "65.4"
  101. },
  102. {
  103. "id": "10394251724976454044",
  104. "title": "北京点点酷东东商贸中心海淀分部",
  105. "address": "北京市海淀区北四环西路66号中关村文化商厦2B001",
  106. "category": "购物;综合商场",
  107. "location": {
  108. "lat": "39.984093",
  109. "lng": "116.307983"
  110. },
  111. "_distance": "42.6"
  112. },
  113. {
  114. "id": "16427755502147943355",
  115. "title": "北京资源燕园宾馆",
  116. "address": "北京市海淀区颐和园路1号",
  117. "category": "酒店宾馆;星级酒店",
  118. "location": {
  119. "lat": "39.986712",
  120. "lng": "116.305822"
  121. },
  122. "_distance": "318.3"
  123. }
  124. ]
  125. }
  126. }

我使用HttpRequest获取了这部分信息

  1. HttpWebRequest request = (HttpWebRequest)result.AsyncState;
  2. HttpWebResponse response = (HttpWebResponse)(request.EndGetResponse(result));
  3. stream = response.GetResponseStream();
  4. StreamReader reader = new StreamReader(stream, false);
  5. string apiText = reader.ReadToEnd();
  6. JObject jsonObj = null;
  7. try
  8. {
  9. jsonObj = JObject.Parse(apiText);
  10. if (jsonObj.Count == 1 || (int)(jsonObj["status"]) != 0) this.isError = true;
  11. else
  12. {
  13. string provinceName = (string)jsonObj["result"]["address_component"]["province"];
  14. string cityName = this.cityName_s = (string)jsonObj["result"]["address_component"]["city"];
  15. string districtName = (string)jsonObj["result"]["address_component"]["district"];
  16. string street = (string)jsonObj["result"]["address_component"]["street"];
  1. /*下面是解析JArray的部分*/
  2. JArray jlist = JArray.Parse(jsonObj["result"]["pois"].ToString()); //将pois部分视为一个JObject,JArray解析这个JObject的字符串
  3. LocationItem locationitem = null;      //存储附近的某个地点的信息
  4. locations = new List<LocationItem>();  //附近位置的列表
  5. for(int i = 0; i < jlist.Count ; ++i)  //遍历JArray
  6. {
  7. locationitem = new LocationItem();
  8. JObject tempo = JObject.Parse(jlist[i].ToString());
  9. locationitem.id = tempo["id"].ToString();
  10. locationitem.title = tempo["title"].ToString();
  11. locationitem._distance = tempo["_distance"].ToString();
  12. locationitem.address = tempo["address"].ToString();
  13. locationitem.category = tempo["category"].ToString();
  14. locationitem.location.lat = tempo["location"]["lat"].ToString();
  15. locationitem.location.lng = tempo["location"]["lng"].ToString();
  16. locations.Add(locationitem);
  17. }
  18. }
  19. }
  20. catch (Exception)
  21. {
  22. isError = true;
  23. }

其中使用了两个类

  1. public class LngLat
  2. {
  3. public string lat { get; set; }
  4. public string lng { get; set; }
  5. }
  6. public class LocationItem
  7. {
  8. public string id{get;set;} //
  9. public string title { get; set; } //名称
  10. public string address { get; set; } //地址
  11. public string category { get; set; } //类型
  12. public LngLat location { get; set; } //经纬度
  13. public string _distance { get; set; } //距离(米)
  14. public LocationItem()
  15. {
  16. id = "0";
  17. title = "";
  18. address = "";
  19. _distance = "0";
  20. location = new LngLat { lng = "0", lat = "0" };
  21. category = "";
  22. }
  23. }

这样就完成了这个复杂json数据的解析。JSON数组访问还有用数组下标方式的,那个就需要数组至少要有足够的个数,如要取得上面那个json数据的 中国技术大厦A座 ,就是用 jsonObj["result"]["pois"][1]["title"].ToString() ,即访问了result下pois数组的第2个节点的title信息,但是要遍历所有的数据就明显不如JArray方便了

c#序列化json字符串及处理的更多相关文章

  1. 此类目的是防治序列化Json字符串时的循环引用问题-------最好解决方案

    http://james.newtonking.com/json/help/index.html using Newtonsoft.Json;using System;using System.Col ...

  2. C# 把对象序列化 JSON 字符串 和把JSON字符串还原为对象

    /// <summary> /// 把对象序列化 JSON 字符串 /// </summary> /// <typeparam name="T"> ...

  3. 表单序列化json字符串和js时间格式化

    js时间格式化 new Date().format("时间格式") Date.prototype.format = function(fmt) { var o = {        ...

  4. c# 使用 Newtonsoft.Json 序列化json字符串以及,反序列化对象

    1. 序列化 对象 /** 使用 Newtonsoft.Json 序列化对象 **/ [WebMethod] public String getPersonInfos() { // 初始化数据 Lis ...

  5. [MVC_Json序列化]Json字符串反序列化成C#对象

    上一篇中有Json序列化相关问题得到了解决. 那么结果集为Json串时,如何将Json串转成C#对象呢? 现举例说明: -现有如下字符串数据 string k = "{\"ring ...

  6. js将form表单序列化[json字符串、数组、对象]

    1.序列化为字符串 $("#Form").serialize();//name=zhangsan&sex=1&age=20   2.序列化为数组 var formD ...

  7. ASP.NET自带对象JSON字符串与实体类的转换

    关于JSON的更多介绍,请各位自行google了解!如果要我写的话,我也是去Google后copy!嘿嘿,一直以来很想学习json,大量的找资料和写demo,总算有点了解! 切入正题! 还是先封装一个 ...

  8. Newtonsoft.Json.dll 反序列化JSON字符串

    上一篇JSON博客<JSON入门级学习小结--JSON数据结构>中已对JSON做了简单介绍,JSON字符串数组数据样式大概是这样子的: 如今因为项目需求(asp.net web网站,前台向 ...

  9. C#将JSON字符串对象序列化与反序列化

    C#将对象序列化成JSON字符串 public string GetJsonString() { List<Product> products = new List<Product& ...

随机推荐

  1. android开发中fragment获取context

    在用到fragment时无法使用.this来指定当前context内容,android开发中fragment获取context,可以使用getActivity().getApplicationCont ...

  2. Eclipse 报java.lang.OutOfMemoryError: PermGen space错

    这块内存主要是被JVM存放Class和Meta信息的,Class在被Loader时就会被放到PermGen space中,它和存放类实例(Instance)的Heap区域不同,GC(Garbage C ...

  3. *cf.4 贪心

    D. Kostya the Sculptor time limit per test 3 seconds memory limit per test 256 megabytes input stand ...

  4. IOS网络第三天 - 01-网络文件下载(0922略)

    01 数据的安全01 - 密码加密 02 数据的安全02 - 加密过程 01 -数据的安全01 - 本地存储和代码安全 04-网络状态监控 05-真机演示 06-小文件下载 07-大文件下载01-基本 ...

  5. Hyper-V~双网卡设置

    Windows: Win10 有线网卡+无线网卡各一块 Hyper-V: 10.0.10240.16384 公司网络服务器180网段,公网192.168.0.*网段 家里网络:192.168.1.*网 ...

  6. Mysql 数据库之修改标的结构

    比如我们新建一user表 create table user( id int unsigned auto_increment primary key, name varchar(60) not nul ...

  7. web系统访问频率限制

    无论是spring mvc还是struts,都可以为controller或者aciton执行前,增加拦截器. 通过拦截器中的逻辑控制,可以实现访问频率的限制. 首先构造访问频率数据类 class Fr ...

  8. 一起来做chrome扩展《本地存储localStorage》

    chrome中的本地存储其实也是用的HTML5中localStorage,唯一区别是chrome扩展有自己的localStorage,它属于这个扩展,而不属于一个域名.得用这一点可以很好的处理扩展自己 ...

  9. C/C++语言,自学资源,滚动更新中……

    首先要说<一本通>是一个很好的学习C/C++语言的自学教材. 以下教学视频中,缺少对"字符串"技术的讨论,大家注意看书.         一维数组,及其举例:(第四版) ...

  10. BT客户端实现 Peer协议设计

    与peer建立tcp连接后,首先发送handshake消息进行握手 handshake消息格式如下: 一个字节0x19 + 一个字符串'BitTorrent protocol' + 8 byte 保留 ...