1

我正在为 Omegle 写一些东西,这是我得到的回应:

{ "clientID" : "shard2:jgv1dnwhyffmld7kir5drlcwp7k6eu",
  "events" : [ [ "waiting" ],
      [ "statusInfo",
        { "antinudepercent" : 1.0,
          "antinudeservers" : [ "waw1.omegle.com",
              "waw2.omegle.com",
              "waw3.omegle.com"
            ],
          "count" : 28477,
          "servers" : [ "front1.omegle.com",
              "front8.omegle.com",
              "front7.omegle.com",
              "front9.omegle.com",
              "front2.omegle.com",
              "front5.omegle.com",
              "front3.omegle.com",
              "front6.omegle.com",
              "front4.omegle.com"
            ],
          "spyQueueTime" : 0.000099992752075199996,
          "spyeeQueueTime" : 0.8086000442504,
          "timestamp" : 1375197484.3550739
        }
      ]
    ]
}

要将这些数据放入字典中,我尝试使用以下函数:

    private Dictionary<string, object> deserializeToDictionary(string jo)
    {
        Dictionary<string, object> values = JsonConvert.DeserializeObject<Dictionary<string, object>>(jo);
        Dictionary<string, object> values2 = new Dictionary<string, object>();
        foreach (KeyValuePair<string, object> d in values)
        {
            if (d.Value.GetType().FullName.Contains("Newtonsoft.Json.Linq.JObject"))
            {
                values2.Add(d.Key, deserializeToDictionary(d.Value.ToString()));
            }
            else
            {
                values2.Add(d.Key, d.Value);
            }

        }
        return values2;
    }

但是,我收到以下错误:

无法将当前 JSON 数组(例如 [1,2,3])反序列化为类型“System.Collections.Generic.Dictionary2[System.String,System.Object]”,因为该类型需要 JSON 对象(例如 {"name": "value"}) 正确反序列化。

要修复此错误,请将 JSON 更改为 JSON 对象(例如 {"name":"value"})或将反序列化类型更改为数组或实现集合接口的类型(例如 ICollection、IList),例如可以从 JSON 数组反序列化。JsonArrayAttribute 也可以添加到类型中以强制它从 JSON 数组反序列化。

我究竟做错了什么?

4

1 回答 1

4

对您的问题“为什么会出现此错误”的简短回答是您的 JSON 是 JSON 对象和数组的混合体,但您的代码似乎正试图将所有内容反序列化为字典。Json.Net 无法将数组反序列化为字典,因此会引发此错误。反序列化时,您必须确保将 JSON 对象与 .NET 对象(或字典)匹配,将 JSON 数组与 .NET 数组(或列表)匹配。

那么,我们如何让事情发挥作用呢?好吧,如果您只想要一个可以处理任意 JSON 并将其转换为常规 .NET 类型(原语、列表和字典)的通用函数,那么您可以使用 JSON.Net 的Linq-to-JSON API来执行以下操作:

private static object Deserialize(string json)
{
    return ToObject(JToken.Parse(json));
}

private static object ToObject(JToken token)
{
    if (token.Type == JTokenType.Object)
    {
        Dictionary<string, object> dict = new Dictionary<string, object>();
        foreach (JProperty prop in ((JObject)token).Properties())
        {
            dict.Add(prop.Name, ToObject(prop.Value));
        }
        return dict;
    }
    else if (token.Type == JTokenType.Array)
    {
        List<object> list = new List<object>();
        foreach (JToken value in token.Values())
        {
            list.Add(ToObject(value));
        }
        return list;
    }
    else
    {
        return ((JValue)token).Value;
    }
}

另一方面,当您可以将所有内容保留为 JObjects 和 JArrays 并使用 API 直接查找您要查找的内容时,为什么还要麻烦呢?例如,如果您想获取所有事件名称,您可以这样做:

var events = JObject.Parse(json)["events"];
var eventNames = events.Select(a => a[0].Value<string>()).ToList();

如果您想获取所有“gotMessage”事件的所有消息,您可以这样做:

var messages = events.Where(a => a[0].Value<string>() == "gotMessage")
                     .Select(a => a[1].Value<string>())
                     .ToList();

Discalimer:我对“Omegle”或其API一点也不熟悉,所以我只是根据您的问题和评论猜测JSON的格式是什么。我也不确切知道您对哪些数据感兴趣,因此您几乎可以肯定需要进行调整以满足您的需求。希望这些例子足以让你“摆脱困境”。我还建议查看文档中的 Linq-to-JSON示例

于 2013-07-30T18:14:29.343 回答