我正在将代码形式的XML从XML转换为JSON。
但是我找不到如何从给定的URL获取JSON字符串。
该URL如下所示:“ https://api.facebook.com/method/fql.query?query=.....&format=json ”
我以前使用过XDocuments,可以在其中使用load方法:
XDocument doc = XDocument.load("URL");
此方法与JSON等效吗?我正在使用JSON.NET。
在中使用WebClient类System.Net:
WebClient
System.Net
var json = new WebClient().DownloadString("url");
请记住WebClient是IDisposable,因此您可能会using在生产代码中为此添加一条语句。看起来像:
IDisposable
using
using (WebClient wc = new WebClient()) { var json = wc.DownloadString("url"); }