gpt4 book ai didi

c# - 如何使用 System.Text.Json 将 ReadOnlySpan 反序列化为对象

转载 作者:太空宇宙 更新时间:2023-11-03 14:38:39 24 4
gpt4 key购买 nike

我有一个案例,当我得到一个非常大的文本数据并且每一行都包含一些元数据 + json 数据字符串。我需要处理每一行的 json 数据。

这是我的:

public Data GetData(string textLine)
{
var spanOfLine = textLine.AsSpan();
var indexOfComma = spanOfLine.IndexOf(":");
var dataJsonStringAsSpan = spanOfLine.Slice(indexOfComma + 1);

// now use dataJsonStringAsSpan which is ReadOnlySpan<char> to deserialize the Data
}

其中 Data 是一个 Dto 类,它具有一堆 (7) 个不同的属性:

public class Data
{
public int Attribute1 { get; set; }

public double Attribute2 { get; set; }
// ... more properties, emitted for the sake of brevity
}

我正在尝试通过 System.Text.Json 实现这一目标应用程序接口(interface)。令人惊讶的是,它没有任何可从 ReadOnlySpan<char> 反序列化的重载。 ,所以我想出了这个:

public Data GetData(string textLine)
{
var spanOfLine = textLine.AsSpan();
var indexOfComma = spanOfLine.IndexOf(":");
var dataJsonStringAsSpan = spanOfLine.Slice(indexOfComma + 1);

var byteCount = Encoding.UTF8.GetByteCount(dataJsonStringAsSpan);
Span<byte> buffer = stackalloc byte[byteCount];
Encoding.UTF8.GetBytes(dataJsonStringAsSpan, buffer);
var data = JsonSerializer.Deserialize<Data>(buffer);
return data;
}

虽然这可行,但看起来非常复杂。

这是要走的路还是我错过了更简单的东西?

最佳答案

.Net6 支持 Deserialize(ReadOnlySpan<Char> , show ref

例子

  ReadOnlySpan<char> jsonString = "....";

WeatherForecast? weatherForecast = JsonSerializer.Deserialize<WeatherForecast>(jsonString);

在线Example

关于c# - 如何使用 System.Text.Json 将 ReadOnlySpan<char> 反序列化为对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58845880/

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