这是页面网址:http://product.dangdang.com/callback.php?type = detail& product_id = 20945731& page_type = book
我将源下载为流或文件。 我如何使用c#stream解码它?并获得json的内容。
谢谢!
答案 0 :(得分:1)
我建议您尝试使用此json-c#-class-generator,这样您就可以传递此流来初始化对象树,然后只需使用它。我用巨大的 json试了一下,一切都很棒!!!!!!
编辑:你甚至不必传递这个Stream对象,你可以传递JSON原始字符串,你就可以完成工作了!见;
public List<Result> HandleRequest(String json)
{
RootObject ro = new RootObject(json); //This line solved the problem, as now it become totally easy to consume this JSON as C# objects...
}