3

如何解析这个json字符串?我试图输入字典

var dictionary = text.FromJson<Dictionary<string, string>>();

但未解析数组。

{"v":[[9,-1],[9,-44,1]]}
4

2 回答 2

3

试试这门课

public class Root
{
     public  List<List<int>> v;
}

var result = text.FromJson<Root>();

编辑

由于您的 json 字符串已更改,因此我使用Json.Net准备了一个示例

string json = @"{ v: [ [ 9, 16929, 1, 856, 128, '123', 'hello', {'type': 'photo', 'attach1': '123_456'} ] ] } ";
var obj = (JObject)JsonConvert.DeserializeObject(json);

foreach (var arr in obj["v"])
{
    foreach(var item in arr)
    {
        if (item is JValue)
        {
            Console.WriteLine(item);
        }
        else
        {
            Console.WriteLine(">>> " + item["type"]);
        }
    }
}
于 2012-08-21T10:02:00.033 回答
3

你使用了错误的结构。你的价值是一个多维数组,没有字符串。尝试类型 Dictionary<String, List<List<int>>>

var dictionary = text.FromJson< Dictionary<String, List<List<int>>>>();
于 2012-08-21T10:02:29.077 回答