gpt4 book ai didi

c# - 将多行 JSON 反序列化为 C# 对象

转载 作者:太空宇宙 更新时间:2023-11-03 18:20:23 25 4
gpt4 key购买 nike

 {"ItemName":"8","Id":1}
{"ItemName":"9","Id":2}

我正在从 blob 读取 json 文件,每一行都具有上述格式,并且行甚至没有用逗号分隔,而且文件中也没有方括号。

当我尝试在 jsontextreader 中将 SupportMultipleContent 设置为 true 时,出现以下异常:

 Cannot deserialize the current JSON object (e.g. {"name":"value"}) into type 'System.Collections.Generic.List`1[ValueDTO]' because the type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array or List<T>) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type to force it to deserialize from a JSON object.
Path 'ItemName', line 1, position 12.

或者,如果无法解析此类 json,那么我将如何在 azure 中配置数据工厂以使文件具有正确的 json 格式。

代码:

using (var sr = new StreamReader(stream))
{
using (var jsonTextReader = new JsonTextReader(sr))
{
jsonTextReader.SupportMultipleContent = true;
while (jsonTextReader.Read())
{
var data = serializer.Deserialize<T>(jsonTextReader);
result.Add(data);
}

}
}

Json has no explicit \n character

最佳答案

JSON 的每一行本身就是一个 JSON 对象。您没有包含所有对象的 JSON 数组。

要阅读它,您只需要重写您的方法以单独反序列化每一行:

private static List<ValueDTO> LoadItems(Stream stream)
{
var result = new List<ValueDTO>();
using (var reader = new StreamReader(stream))
{
string line = null;
while ((line = reader.ReadLine()) != null)
{
if (!string.IsNullOrEmpty(line))
{
result.Add(JsonConvert.DeserializeObject<ValueDTO>(line));
}
}
}
return result;
}

Try it online

关于c# - 将多行 JSON 反序列化为 C# 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59043359/

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