>  기사  >  백엔드 개발  >  C#은 Json을 DateTable로 구문 분석합니다.

C#은 Json을 DateTable로 구문 분석합니다.

黄舟
黄舟원래의
2017-02-18 10:39:491714검색

C#은 Json을 DateTable로 구문 분석합니다.

 #region 将 Json 解析成 DateTable
        /// <summary>  
        /// 将 Json 解析成 DateTable。  
        /// Json 数据格式如:
        ///     {table:[{column1:1,column2:2,column3:3},{column1:1,column2:2,column3:3}]}
        /// </summary>  
        /// <param name="strJson">要解析的 Json 字符串</param>  
        /// <returns>返回 DateTable</returns>  
        public DataTable JsonToDataTable(string strJson)
        {
            // 取出表名  
            var rg = new Regex(@"(?<={)[^:]+(?=:\[)", RegexOptions.IgnoreCase);
            string strName = rg.Match(strJson).Value;
            DataTable tb = null;

            //数据为空返回
            if (strJson.Trim().Length == 0)
            {
                return tb;
            }
            // 检查strJson是否是json字符串
            if (!JsonSplit.IsJson(strJson))
            {
                return tb;
            }

            try
            {
                // 去除表名  
                strJson = strJson.Substring(strJson.IndexOf("[") + 1);
                strJson = strJson.Substring(0, strJson.IndexOf("]"));

                // 获取数据  
                rg = new Regex(@"(?<={)[^}]+(?=})");
                MatchCollection mc = rg.Matches(strJson);
                for (int i = 0; i < mc.Count; i++)
                {
                    string strRow = mc[i].Value;
                    string[] strRows = strRow.Split(&#39;,&#39;);
                    // 创建表  
                    if (tb == null)
                    {
                        tb = new DataTable();
                        tb.TableName = strName;
                        foreach (string str in strRows)
                        {
                            var dc = new DataColumn();
                            string[] strCell = str.Split(&#39;:&#39;);
                            dc.ColumnName = strCell[0].Replace("\"", "");
                            tb.Columns.Add(dc);
                        }
                        tb.AcceptChanges();
                    }
                    // 增加内容  
                    DataRow dr = tb.NewRow();
                    for (int j = 0; j < strRows.Length; j++)
                    {
                        dr[j] = strRows[j].Split(&#39;:&#39;)[1].Replace("\"", "");
                    }
                    tb.Rows.Add(dr);
                    tb.AcceptChanges();
                }
            }
            catch (Exception ee)
            {
                MessageBox.Show(ee.ToString());
            }
            return tb;
        }
        #endregion

문자열이 Json 형식인지 식별합니다. http://www.php.cn/csharp-article-352536.html


형식은 다음과 같습니다.

{
    "table": [
        {
            "column1": 1, 
            "column2": 2, 
            "column3": 3
        }, 
        {
            "column1": 1, 
            "column2": 2, 
            "column3": 3
        }
    ]
}

예:

[{"Code":"MetaDataId","Name":"MetaDataId"},{"Code":"MetadataCode","Name":"编号"},{"Code":"SolutionName","Name":"名称"}]


형식 지정 후:

[
    {
        "Code": "MetaDataId", 
        "Name": "MetaDataId"
    }, 
    {
        "Code": "MetadataCode", 
        "Name": "编号"
    }, 
    {
        "Code": "SolutionName", 
        "Name": "名称"
    }
]

코드 서식 도구: http://tool.oschina.net/codeformat/xml


변환된 효과는 다음과 같습니다:

위 내용은 C#에서 Json을 DateTable로 파싱한 내용입니다. 더 자세한 내용은 PHP 중국어 홈페이지(www.php.cn)를 참고해주세요!


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.