gpt4 book ai didi

c# - 如何在 asp .net 中进行 Json 解析

转载 作者:行者123 更新时间:2023-11-30 21:08:08 32 4
gpt4 key购买 nike

http://www.taxmann.com/TaxmannWhatsnewService/Services.aspx?service=gettopstoriestabnews 

这是我的网络服务,我必须解析并将所有值存储在 String 中,请帮助我如何解析。

使用 asp.net (C#) 以便我可以存储:

news_id  as it variable

news_title as title variable

news_short_description as description

news_date as date ;

请帮助我,我是 .net 的新手,我试过但做不到

最佳答案

你可以使用这个类

public class News
{
public string news_id;
public string news_title;
public string news_short_description;
public string news_date;
}

反序列化响应字符串

using (var wc = new WebClient())
{
JavaScriptSerializer serializer = new JavaScriptSerializer();
var result = serializer.Deserialize<News[]>(wc.DownloadString("http://www.taxmann.com/TaxmannWhatsnewService/Services.aspx?service=gettopstoriestabnews"));
foreach (var item in result)
{
Console.WriteLine(item.news_title);
}
}

关于c# - 如何在 asp .net 中进行 Json 解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9851077/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com