使用.net NewtonSoft从json响应中提取键值数据



我有一个小json文件,我想解析:

{
    "audio_file": {
        "__type": "File",
        "name": "somename.m4a",
        "url": "the_url"
    },
    "createdAt": "2015-07-30T19:37:14.916Z",
    "location": "Somewhere",
    "objectId": "CSHgwDuhg8",
    "updatedAt": "2015-07-30T19:37:14.916Z"
}

我想要一种方法来访问所有的值在这里根据键。但由于某种原因,我就是做不到!

我正在尝试以下内容:

var json = JObject.Parse(rawJson);  
string sjson = json.ToString();
JsonTextReader reader = new JsonTextReader(new StringReader(sjson));
while (reader.Read())
{
    if (reader.Value != null)
        Console.WriteLine("Token: {0}, Value: {1}", reader.TokenType, reader.Value);
    else
        Console.WriteLine("Token: {0}", reader.TokenType);
};

干杯!

序列化是将对象转换为可以存储、在系统之间传递并在需要时转换回对象的形式的过程。形式可以是二进制数据或文本/字符串(例如音频文件对象的字符串表示)。在MSDN和维基百科上阅读有关序列化的内容。

反序列化是从序列化的二进制/字符串数据中恢复对象的反向过程。了解。net JSON序列化和JSON反序列化与Newtonsoft JSON这里。当你做JsonConvert.DeserializeObject时,你已经在使用它了。

现在要反序列化您拥有的数据,您需要与数据匹配的类表示。如果你已经拥有它,那么很好,否则你需要创造它。

您也可以反序列化到Dictionary<string, dynamic>并使用键查找值,但是,这是有风险的,因为您将没有任何编译时类型检查,如果代码或数据有问题,它将抛出运行时异常。

让我给你看一些代码示例。

json反序列化代码

需要的类

public class AudioFileDetails
{
    public DateTime CreatedAt { get; set;}
    public string Location { get; set; }
    public string Objectid { get; set; }
    public DateTime UpdatedAt { get; set; }
    public FileDetails Audio_File { get; set; }
}
public class FileDetails
{
    public string __Type { get; set; }
    public string Name { get; set; }
    public string Url { get; set; }
}

使用Newtonsoft进行反序列化的方法。Json

using Newtonsoft.Json.JsonConvert; //Add Json.NET NuGet package
public class JsonSerializer 
{
    public static T DeserializeData<T>(string jsonData)
    {
        try
        {
            return Newtonsoft.Json.JsonConvert.DeserializeObject<T>(jsonData);
        }
        catch(Exception ex)
        {
            //log exception if required
            return default(T);
        }
    } 
}

现在用几行代码来反序列化数据并使用内部值

var jsonString = @"{'audio_file':{'__type':'File','name':'somename.m4a','url':'the_url'},'createdAt':'2015-07-30T19:37:14.916Z','location':'Somewhere','objectId':'CSHgwDuhg8','updatedAt':'2015-07-30T19:37:14.916Z'}";
var data = JsonSerializer.DeserializeData<AudioFileDetails>(jsonString);
var url = data.Audio_File.Url; //access any property here

反序列化为字符串、动态字典的代码

var jsonString = @"{'audio_file':{'__type':'File','name':'somename.m4a','url':'the_url'},'createdAt':'2015-07-30T19:37:14.916Z','location':'Somewhere','objectId':'CSHgwDuhg8','updatedAt':'2015-07-30T19:37:14.916Z'}";
var dictionary = JsonSerializer.DeserializeData<Dictionary<string, dynamic>>(jsonString);
//To use, get property with the key. For complex objects, use .PropertyName
var url = dictionary["audio_file"].url; 

同样,编译器不会在编译时检查动态。如果有任何错误,它将在运行时失败并抛出异常。

你实际上已经反序列化了,这行var json = JObject.Parse(rawJson);

你需要的一切都有了

这里有一个方法,你可以调用它来获取你需要的所有数据。

    static void OutputJObject(JObject jsonObject, string indent = "")
    {
        foreach (KeyValuePair<string, JToken> node in jsonObject)
        {
            Console.Write(indent);
            if (node.Value.Type == JTokenType.Object)
            {
                Console.WriteLine("Key: {0}", node.Key);
                OutputJObject((JObject)node.Value, indent + "  ");
            }
            else
            {
                Console.WriteLine("Key: {0}, Value: {1}, Type: {2}", node.Key, node.Value, node.Value.Type);
            }
        }          
    }

调用OutputJObject(json);,您将得到以下输出:

Key: audio_file
  Key: __type, Value: File, Type: String
  Key: name, Value: somename.m4a, Type: String
  Key: url, Value: the_url, Type: String
Key: createdAt, Value: 7/30/2015 19:37:14, Type: Date
Key: location, Value: Somewhere, Type: String
Key: objectId, Value: CSHgwDuhg8, Type: String
Key: updatedAt, Value: 7/30/2015 19:37:14, Type: Date

这给了你你想要的,而不必处理多个额外的反序列化调用和处理动态。您还可以获得关于值的数据类型的信息。

相关内容

  • 没有找到相关文章