0
我有一个JSON字符串,它看起来像下面,DataContractJsonSerializer反序列化JSON
{
"ErrorDetails":null,
"Success":true,
"Records":[
{
"Attributes":[
{
"Name":"accountid",
"Value":null
},
{
"Name":"accountidname",
"Value":null
}
],
"Id":"9c5071f7-e4a3-e111-b4cc-1cc1de6e4b49",
"Type":"contact"
}
]
}
我用下面的反序列化这个字符串,
DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(JSONPackage));
object objResponse = jsonSerializer.ReadObject(response.GetResponseStream());
JSONPackage jsonResponse = objResponse as JSONPackage;
而且我JSONPackage看起来像以下,
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CommonLibs.JSONObjects
{
public class JSONPackage
{
public string ErrorDetails { get; set; }
public string Success { get; set; }
public List<Record> Records { get; set; }
}
}
和记录看起来像这样,
个using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace CommonLibs.JSONObjects
{
public class Record
{
public List<Attributes> Attributes { get; set; }
public string Id { get; set; }
public string Type { get; set; }
}
}
属性的样子,
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace CommonLibs.JSONObjects
{
public class Attributes
{
public AttributeItem AttributeItem { get; set; }
}
}
而且最后AttributeItem如下所示,
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace CommonLibs.JSONObjects
{
public class AttributeItem
{
public string Name { get; set; }
public string Value { get; set; }
}
}
然而,这似乎并不工作。
当我这样做,
Console.WriteLine(jp.Records[0].Attributes[0].AttributeItem.Name);
我得到一个NullPointerException(jp
是JSONPackage对象)。
但是,如果我这样做,
Console.WriteLine(jp.Records[0].Attributes.Count) i get "2"
能否请您协助?