使用C#解析JSON URL我遇到了一些問題。正如你所知,JSON數據被寫爲名稱/值對。現在在URL JSON我有這些數據:解析C#中的JSON名稱對#
{
"currentVersion":10.41,
"serviceDescription":"There are some text here",
"hasVersionedData":true,
"supportsDisconnectedEditing":false,
"syncEnabled":false,
"supportedQueryFormats":"JSON",
"maxRecordCount":1000
}
,我只想用這個代碼
using (var wc = new WebClient())
{
string json = wc.DownloadString("http://xxxxxxxxx?f=pjson");
try
{
dynamic data = Json.Decode(json);
for (int i = 0; i <= data.Length - 1; i++)
{
Console.WriteLine(data[0]);
}
}
catch (Exception e)
{
}
}
打印出來的JSON數據的名稱部分,但這不打印在控制檯上的任何東西!你能否讓我知道我在做什麼錯了?
的可能的複製[如何從URL JSON字符串?](http://stackoverflow.com/questions/5566942/how-to-get-a-json-string-from-url) – scrappedcola
你得到了什麼錯誤?你正在吃掉異常。嘗試寫入控制檯和看到錯誤 –
我沒有得到任何錯誤!只是emply控制檯 – Behseini