WebClient 類別提供了向由 URI 識別的任何本機、Intranet 或 Internet 資源發送資料或從其接收資料的常用方法。
WebClient 類別使用 WebRequest 類別提供對資源的存取。 WebClient 實例可以使用透過 WebRequest.RegisterPrefix 方法註冊的任何 WebRequest 後代存取資料。
DownloadString 從資源下載字串並傳回字串。
如果您的要求需要可選標頭,您必須將標頭新增至Headers 集合中
在下面的範例中,我們將url 稱為「https://」 jsonplaceholder.typicode.com/posts"
然後將範例反序列化為User 陣列
#從使用者陣列中我們得到印出第一個陣列值
class Program{ static void Main(string[] args){ var client = new WebClient(); var json = client.DownloadString("https://jsonplaceholder.typicode.com/posts"); var userPosts = JsonConvert.DeserializeObject<User[]>(json); System.Console.WriteLine(userPosts[0].title); Console.ReadLine(); } } public class User{ public string userId { get; set; } public string id { get; set; } public string title { get; set; } public string body { get; set; } }
sunt aut facere repellat provident occaecati excepturi optio reprehenderit
以上是如何在 C# 中使用 Newtonsoft json 將 JSON 反序列化為 .NET 物件並從陣列中僅選擇一個值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!