当前位置:   article > 正文

C# JSON转化为二维数组_c# json 二维数组

c# json 二维数组

从网上找了很多资料,都不靠谱,所以写了个,虽然方法笨了点,但总算是实现了

添加引用,NuGet搜 Newtonsoft.Json

using Newtonsoft.Json.Linq;
using Newtonsoft.Json;

 

public static string[][] getObjectByJson(string jsonString)
        {
            string[][] ret = null;
            JArray json1 = (JArray)JsonConvert.DeserializeObject(jsonString);
            
            int count = json1.Count;
            if (ret == null)
            {
                ret = new string[count][];
            }
            for (int i = 0; i < count; i++)
            {
                Console.WriteLine(json1[i].ToString());
                JArray json2 = (JArray)JsonConvert.DeserializeObject(json1[i].ToString());
                int count2 = json2.Count;
                ret[i] = new string[count2];
                for (int j = 0; j < count2; j++)
                {
                    ret[i][j] = json2[j].ToString();
                }
            }
            return ret;
        }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/456346
推荐阅读
相关标签
  

闽ICP备14008679号