我正在Windows 8、Visual Studio 2012中开发Windows应用商店应用程序。我需要对一个特定的url发出get请求并获取json作为响应。我需要解析json来获取其中的值。我需要C代码来实现上述功能。
最佳答案
您可以使用MSDN中的示例代码
var client = new HttpClient();
var uri = new Uri("http://ponify.me/stats.php");
Stream respStream = await client.GetStreamAsync(uri);
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(rootObject));
rootObject feed = (rootObject)ser.ReadObject(respStream);
System.Diagnostics.Debug.WriteLine(feed.SONGHISTORY[0].TITLE);
关于c# - C#GET请求和解析JSON,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15219792/