簡體   English   中英

使用Json.NET進行Json反序列化中的JsonSerializationException

[英]JsonSerializationException in Json Deserializing using Json.NET

我有一個像這樣的傑森:

[{"id":"54718","title":"Khaleda to visit China","corres":"Special Correspondent","details":"DHAKA: On a 7-day visit, opposition BNP Chairperson Khaleda Zia will leave Dhaka for China on October 14.","photo":"2012October\/SM\/Khaleda-new-sm20121003132805.jpg"}] 

到目前為止,我已經解析了這個Json:

public class Attributes
{
    [JsonProperty("id")]
        public string ID{ get; set; }
        [JsonProperty("title")]
        public string TITLE { get; set; }
        [JsonProperty("corres")]
        public string CORRES { get; set; }
        [JsonProperty("details")]
        public string  DETAIL { get; set; }
        [JsonProperty("photo")]
        public string LINK { get; set; }
}

public class DataJsonAttributeContainer
{
    public List<Attributes> NewsList{ get; set; }
    //public Attributes attributes { get; set; }
}

public static T DeserializeFromJson<T>(string json)
{   //I'm getting the error here     
    T deserializedProduct = JsonConvert.DeserializeObject<T>(json);
    return deserializedProduct;
}

&在我的代碼中:

 void webClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        //parse data
            var container = DeserializeFromJson<DataJsonAttributeContainer>(e.Result);

            //load into list
            for (i = 0; i < container.NewsList.Count ; i++)
            {
                newData[i] = new data();
                newData[i].id = container.NewsList[i].ID;
                newData[i].title = container.NewsList[i].TITLE;
                newData[i].price = container.NewsList[i].CORRES;
                newData[i].image = container.NewsList[i].DETAIL;
                newData[i].link = container.NewsList[i].LINK;
            }

問題是: container正在從Web服務器獲取json,我可以在調試器上看到它,但是它在反序列化時遇到了異常。 有人可以幫忙嗎? 我得到的異常:

Cannot deserialize the current JSON array (e.g. [1,2,3]) into type 'BanglaNewsPivot.MainPage+DataJsonAttributeContainer' because the type requires a JSON object (e.g. {"name":"value"}) to deserialize correctly.To fix this error either change the JSON to a JSON object (e.g. {"name":"value"}) or change the deserialized type to an array or a type that implements a collection interface (e.g. ICollection, IList) like List<T> that can be deserialized from a JSON array. JsonArrayAttribute can also be added to the type to force it to deserialize from a JSON array.Path '', line 1, position 1.

您的json是一個數組 (不是包含array的單個對象 )。 如下調用您的DeserializeFromJson

var attrs = DeserializeFromJson<List<Attributes>>(e.Result);

足夠。

- 編輯 -

foreach (var attr in attrs)
{
     Console.WriteLine("{0} {1}", attr.ID, attr.TITLE);
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM