c# – 将JSON反序列化为字符串数组

前端之家收集整理的这篇文章主要介绍了c# – 将JSON反序列化为字符串数组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚开始涉足C#,我现在已经对 JSON反序列化进行了一段时间的讨论.我正在使用Newtonsoft.Json库.我期待一个字典数组的json响应
[{"id":"669","content":" testing","comments":"","ups":"0","downs":"0"},{"id":"482","content":" test2","downs":"0"}]

现在我有:(注意:下载只是一个包含json字符串的字符串)

string[] arr = JsonConvert.DeserializeObject<string[]>(download);

我尝试了很多不同的方法,每个方法都失败了.解析这种类型的json有标准的方法吗?

解决方法

你有一个对象数组而不是字符串.创建一个映射属性的类并反序列化为,
public class MyClass {
    public string id { get; set; }
    public string content { get; set; }
    public string ups { get; set; }
    public string downs { get; set; }
}

MyClass[] result = JsonConvert.DeserializeObject<MyClass[]>(download);

JSON中只有几种基本类型,但学习和识别它们很有帮助.对象,数组,字符串等http://www.json.org/http://www.w3schools.com/json/default.asp是很好的入门资源.例如,JSON中的字符串数组看起来像,

["One","Two","Three"]
原文链接:https://www.f2er.com/csharp/97717.html

猜你在找的C#相关文章