如何将具有不同JSON结构的JSON数组解析为List <string>?

时间:2016-02-14 16:58:10

标签: c# json

我找到的所有解决方案,对我不满意,因为我没有JSON相同的结构。 我的JSON数组:

string str = @"[{
    "type": "text",
    "field": [
        "tags",
        "track_title"
    ],
    "value": "hero",
    "operation": "must"
},  {
    "type": "range",
    "field": "duration",
    "value": [
        0,
        5
    ],
    "operation": "must"
}, {
    "type": "range",
    "field": "duration",
    "value": [
        180,
        null
    ],
    "operation": "must"
}]"

如您所见,JSON是不同的。所以我不能通过它使用特定的模型类进行转换。我需要使用单独的JSON接收List<string>。我怎么解析它?

2 个答案:

答案 0 :(得分:1)

基本上你可以做的是将Json反序列化为动态类型,以便它可以处理差异。 例如here您有如何使用Json.Net库

答案 1 :(得分:1)

根据我的理解,我建议我们手动完成。这是代码:

            string str = @"[{
    'type': 'text',
    'field': [
        'tags',
        'track_title'
    ],
    'value': 'hero',
    'operation': 'must'
},  {
    'type': 'range',
    'field': 'duration',
    'value': [
        0,
        5
    ],
    'operation': 'must'
}, {
    'type': 'range',
    'field': 'duration',
    'value': [
        180,
        null
    ],
    'operation': 'must'
}]";
            // Remove 2 brackets []
            str = str.Remove(0, 1);
            str = str.Remove(str.Length - 1, 1);

            // Split string
            string[] delimiter = {"},"};
            string[] data = str.Split(delimiter, StringSplitOptions.RemoveEmptyEntries);

            // The list you want
            List<string> result = new List<string>();

            // Turn the array into List with some modification
            foreach (string s in data)
            {
                string tmp = s;
                if (!s.EndsWith("}"))
                {
                    tmp = s + "}";
                }
                result.Add(tmp.Trim());
            }

            // Display data
            foreach (string s in result)
            {
                Console.WriteLine(s);
            }
            Console.ReadLine();
        }

代码是自我解释的。如果您发现不清楚的地方,请告诉我。