DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> XML學習教程 >> XML詳解 >> 探索非同凡響的Json數據格式說明
探索非同凡響的Json數據格式說明
編輯:XML詳解     

JSon數據格式在日常工作中還是非常實用的,只需要Json數據就可以了,如果對JSon數據不太了解,那就必須先要對下面就對  進行學習,下面就對JSon數據格式的代碼進行系統的分析與研究。。

  • 專家說明PHP串行化JSON的種種問題給予解
  • 在JavaScript中串行化為JSON—使用JSon2.
  • 如何更很好的生成JSON文本進行詳細介紹
  • 大致闡述JSON數據格式的編寫與運行方式
  • 如何更好用一般的JS生成JSON數據簡介

看到另一篇C#解析JSon的類 的文章現在json因為輕型,越來越流行,部門內部的數據標准趨向於JSon,所以開始學習。本次工作內容是要將以下數據解析成.Net可以使用的數據,返回的數據除了header,其他的都是可變的,也就是說結構不是固定的。完全由用戶選擇,所以選擇了生成DataTable。

JSon數據格式如下:

  1. using System;  
  2.  
  3. using System.Collections.Generic;  
  4.  
  5. using System.Text;  
  6.  
  7. using System.Data;  
  8.  
  9. using System.Web.Script.Serialization;  
  10.  
  11.  
  12.  
  13. namespace Tencent.Itil.Cmsi.Common  
  14.  
  15. {  
  16.  
  17.      public class GeneralSearchResult  
  18.  
  19.      {  
  20.  
  21.          public Header header = new Header();  
  22.  
  23.          private DataTable fIEldDefine = new DataTable();  
  24.  
  25.          /// <summary> 
  26.  
  27.          /// 返回的數據結構定義,無數據  
  28.  
  29.          /// </summary> 
  30.  
  31.          public DataTable FIEldDefine  
  32.  
  33.          {  
  34.  
  35.              get { return fIEldDefine; }  
  36.  
  37.              set { fIEldDefine = value; }  
  38.  
  39.          }  
  40.  
  41.  
  42.  
  43.          private DataTable retrunData = new DataTable();  
  44.  
  45.          /// <summary> 
  46.  
  47.          /// 返回的數據,格式為DataTable,結構和FIEldDefine中的結構一樣  
  48.  
  49.          /// </summary> 
  50.  
  51.          public DataTable RetrunData  
  52.  
  53.          {  
  54.  
  55.              get { return retrunData; }  
  56.  
  57.              set { retrunData = value; }  
  58.  
  59.          }  
  60.  
  61.  
  62.  
  63.          /// <summary> 
  64.  
  65.          /// 將JSon數據轉換為定義好的對象,數據轉換為DataTable  
  66.  
  67.          /// </summary> 
  68.  
  69.          /// <param name="JSonText"></param> 
  70.  
  71.          /// <returns></returns> 
  72.  
  73.          public static GeneralSearchResult GetTransformData(string JSonText)  
  74.  
  75.          {  
  76.  
  77.              GeneralSearchResult gsr = new GeneralSearchResult();  
  78.  
  79.  
  80.  
  81.              JavaScriptSerializer s = new JavaScriptSerializer();  
  82.  
  83.              Dictionary<string, object> JSonData = (Dictionary<string, object>)s.DeserializeObject(JSonText);  
  84.  
  85.              Dictionary<string, object> dataSet = (Dictionary<string, object>)JSonData["dataSet"];  
  86.  
  87.              Dictionary<string, object> header = (Dictionary<string, object>)dataSet["header"];  
  88.  
  89.              Dictionary<string, object> fIEldDefine = (Dictionary<string, object>)dataSet["header"];  
  90.  
  91.              Dictionary<string, object> data = (Dictionary<string, object>)dataSet["data"];  
  92.  
  93.              object[] rows = (object[])data["row"];  
  94.  
  95.              gsr.header.Version = header["version"].ToString();  
  96.  
  97.              gsr.header.ErrorInfo = header["errorInfo"].ToString();  
  98.  
  99.              gsr.header.ReturnCode = header["returnCode"].ToString();  
  100.  
  101.              gsr.header.ReturnRows = Convert.ToInt16(header["returnRows"]);  
  102.  
  103.              gsr.header.TotalRows = Convert.ToInt16(header["totalRows"]);  
  104.  
  105.  
  106.  
  107.              Dictionary<string, object> dicFIEldDefine = (Dictionary<string, object>)dataSet["fIEldDefine"];  
  108.  
  109.              foreach (KeyValuePair<string, object> ss in dicFIEldDefine)  
  110.  
  111.              {  
  112.  
  113.  
  114.  
  115.                  gsr.FIEldDefine.Columns.Add(ss.Key, typeof(string));  
  116.  
  117.  
  118.  
  119.              }  
  120.  
  121.              gsrgsr.RetrunData = gsr.FIEldDefine.Clone();  
  122.  
  123.              foreach (object ob in rows)  
  124.  
  125.              {  
  126.  
  127.                  Dictionary<string, object> val = (Dictionary<string, object>)ob;  
  128.  
  129.                  DataRow dr = gsr.RetrunData.NewRow();  
  130.  
  131.                  foreach (KeyValuePair<string, object> sss in val)  
  132.  
  133.                  {  
  134.  
  135.                      dr[sss.Key] = sss.Value;  
  136.  
  137.                  }  
  138.  
  139.                  gsr.RetrunData.Rows.Add(dr);  
  140.  
  141.              }  
  142.  
  143.              return gsr;  
  144.  
  145.          }  
  146.  
  147.          /// <summary> 
  148.  
  149.          /// 數據文件頭定義  
  150.  
  151.          /// </summary> 
  152.  
  153.          public class Header  
  154.  
  155.          {  
  156.  
  157.              private string version;  
  158.  
  159.              /// <summary> 
  160.  
  161.              /// 版本  
  162.  
  163.              /// </summary> 
  164.  
  165.              public string Version  
  166.  
  167.              {  
  168.  
  169.                  get { return version; }  
  170.  
  171.                  set { version = value; }  
  172.  
  173.              }  
  174.  
  175.              private string returnCode;  
  176.  
  177.              /// <summary> 
  178.  
  179.              /// 結果碼,0為正常,否則為有錯誤  
  180.  
  181.              /// </summary> 
  182.  
  183.              public string ReturnCode  
  184.  
  185.              {  
  186.  
  187.                  get { return returnCode; }  
  188.  
  189.                  set { returnCode = value; }  
  190.  
  191.              }  
  192.  
  193.              private string errorInfo;  
  194.  
  195.              /// <summary> 
  196.  
  197.              /// 如果ReturnCode為非0時的錯誤信息  
  198.  
  199.              /// </summary> 
  200.  
  201.              public string ErrorInfo  
  202.  
  203.              {  
  204.  
  205.                  get { return errorInfo; }  
  206.  
  207.                  set { errorInfo = value; }  
  208.  
  209.              }  
  210.  
  211.              private int totalRows;  
  212.  
  213.              /// <summary> 
  214.  
  215.              /// 查詢結果總行數  
  216.  
  217.              /// </summary> 
  218.  
  219.              public int TotalRows  
  220.  
  221.              {  
  222.  
  223.                  get { return totalRows; }  
  224.  
  225.                  set { totalRows = value; }  
  226.  
  227.              }  
  228.  
  229.              private int returnRows;  
  230.  
  231.              /// <summary> 
  232.  
  233.              /// 返回的數據行數  
  234.  
  235.              /// </summary> 
  236.  
  237.              public int ReturnRows  
  238.  
  239.              {  
  240.  
  241.                  get { return returnRows; }  
  242.  
  243.                  set { returnRows = value; }  
  244.  
  245.              }  
  246.  
  247.          }  
  248.  
  249.      }  
  250.  
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved