Deserializing JSON array into strongly typed .NET object(将 JSON 数组反序列化为强类型的 .NET 对象)
问题描述
当我可以调用第 3 方 api 并取回单个类的数据时,一切都可以使用此代码进行反序列化
When I can call the 3rd party api and get back a single class worth of data everything deserialises fine using this code
TheUser me = jsonSerializer.Deserialize(response, typeof(TheUser)) as TheUser
当我尝试反序列化作为数组的 JSON 响应内容时出现问题,例如
The problem comes when I try and deserialise JSON response content that is an array, such as
{
"data": [
{
"name": "A Jones",
"id": "500015763"
},
{
"name": "B Smith",
"id": "504986213"
},
{
"name": "C Brown",
"id": "509034361"
}
]
}
只有在数据"成员周围使用自定义包装类并且该成员需要是 List
类型时,我才能使序列化工作.如果将它们作为类型 List<TheUser>
我从 JsonParser DesializeType
方法中得到 ArgumentException
.
I can only get the serialization to work if I use a custom wrapping class around the "data" member and that member needs to be of type List<object>
. If it have them as type List<TheUser>
I get ArgumentException
from the JsonParser DesializeType
method.
我最初尝试在没有这样的包装类型的情况下进行序列化
I originally tried to serialise without a wrapping type like this
List<TheUser> freinds = jsonSerializer.Deserialize(response, typeof(List<TheUser>)) as List<TheUser>;
但这只会给我一个空集合.当然,我必须能够将数组反序列化为强类型列表.
but that just returns me an empty collection. Surely I must be able to have the array deserialize to a strongly typed list.
推荐答案
看完来源,对于 WP7 Hammock 实际上并没有使用 Json.Net 进行 JSON 解析.相反,它使用自己的解析器,不能很好地处理自定义类型.
Afer looking at the source, for WP7 Hammock doesn't actually use Json.Net for JSON parsing. Instead it uses it's own parser which doesn't cope with custom types very well.
如果直接使用 Json.Net,则可以反序列化为包装对象内的强类型集合.
If using Json.Net directly it is possible to deserialize to a strongly typed collection inside a wrapper object.
var response = @"
{
""data"": [
{
""name"": ""A Jones"",
""id"": ""500015763""
},
{
""name"": ""B Smith"",
""id"": ""504986213""
},
{
""name"": ""C Brown"",
""id"": ""509034361""
}
]
}
";
var des = (MyClass)Newtonsoft.Json.JsonConvert.DeserializeObject(response, typeof(MyClass));
return des.data.Count.ToString();
并与:
public class MyClass
{
public List<User> data { get; set; }
}
public class User
{
public string name { get; set; }
public string id { get; set; }
}
必须使用 data 属性创建额外的对象很烦人,但这是 JSON 格式对象的构造方式的结果.
Having to create the extra object with the data property is annoying but that's a consequence of the way the JSON formatted object is constructed.
文档:序列化和反序列化 JSON
Documentation: Serializing and Deserializing JSON
这篇关于将 JSON 数组反序列化为强类型的 .NET 对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 JSON 数组反序列化为强类型的 .NET 对象
基础教程推荐
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01