मेरे JSON फ़ीड इस तरह की वस्तुओं नेस्ट किया है:पार्सिंग JSON.NET
{
"id": 1765116,
"name": "StrozeR",
"birth": "2009-08-12",
"avatar": "http:\/\/static.erepublik.com\/uploads\/avatars\/Citizens\/2009\/08\/12\/f19db99e9baddad73981d214a6e576ef_100x100.jpg",
"online": true,
"alive": true,
"ban": null,
"level": 61,
"experience": 183920,
"strength": 25779.42,
"rank": {
"points": 133687587,
"level": 63,
"image": "http:\/\/www.erepublik.com\/images\/modules\/ranks\/god_of_war_1.png",
"name": "God of War*"
},
"elite_citizen": false,
"national_rank": 6,
"residence": {
"country": {
"id": 81,
"name": "Republic of China (Taiwan)",
"code": "TW"
},
"region": {
"id": 484,
"name": "Hokkaido"
}
}
}
और मेरे वस्तु वर्गों इस तरह हैं:
class Citizen
{
public class Rank
{
public int points { get; set; }
public int level { get; set; }
public string image { get; set; }
public string name { get; set; }
}
public class RootObject
{
public int id { get; set; }
public string name { get; set; }
public string avatar { get; set; }
public bool online { get; set; }
public bool alive { get; set; }
public string ban { get; set; }
public string birth { get; set; }
public int level { get; set; }
public int experience { get; set; }
public double strength { get; set; }
public List<Rank> rank { get; set; }
}
}
मैं के साथ मेरी JSON डेटा पार्स करने के लिए कोशिश कोड
private async void getJSON()
{
var http = new HttpClient();
http.MaxResponseContentBufferSize = Int32.MaxValue;
var response = await http.GetStringAsync(uri);
var rootObject = JsonConvert.DeserializeObject<Citizen.RootObject>(response);
uriTB.Text = rootObject.name;
responseDebug.Text = response;
}
निम्नलिखित लेकिन मैं निम्नलिखित त्रुटि मिलती है:
Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[Erepublik.Citizen+Rank]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
मैं मुख्य वस्तु में मान को भी पार्स नहीं कर सकता। इसे ठीक करने का कोई उपाय? और मैं नेस्टेड ऑब्जेक्ट के अंदर एक मान को कैसे पार्स कर सकता हूं? उदाहरण के लिए: "अंक" "रैंक"
बस सोच रहा है कि आपने सी # कक्षाओं में 'निवास', 'देश', 'क्षेत्र' को कैसे हराया। मुझे एक ही समस्या है। क्या आप कोड पोस्ट कर सकते हैं। – Venky