c# 使用 System.Text.Json.Serialization 将 NaN 值反序列化为 JSON;

发布于 2025-01-10 10:10:14 字数 168 浏览 0 评论 0原文

我需要使用 System.Text.Json 将 Json 中的 NaN(因为它不是 JSON)转换为 Double

例如,我有以下 JSON:

{ "Amount": NaN }

I need to convert NaN in Json(as it is not JSON) to Double using System.Text.Json

For example, I am having following JSON:

{ "Amount": NaN }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2025-01-17 10:10:14

要序列化/反序列化,您可以使用替代方式(例如字符串)
Json.NET 将这些作为字符串存储在有效负载中,然后自动转换为浮点型。为了进行演示,您可以检查以下代码:

public class ClassWithNumbers
{
    public int IntNumber { get; set; }
    public float FloatNumber { get; set; }
}

// Json Serialization Options to allow literals 
var options = new JsonSerializerOptions
{
    NumberHandling = JsonNumberHandling.AllowNamedFloatingPointLiterals
};

// Json Exmple
string json = @"{""IntNumber"":1,""FloatNumber"":""NaN""}";
ClassWithNumbers obj =     System.Text.Json.JsonSerializer.Deserialize<ClassWithNumbers>(json, options);

Output:
// obj.IntNumber: 1
// obj.FloatNumber: NaN

To serialized/deserialized, You can use an alternative way (such as strings)
Json.NET stores these as strings in the payload then automatically converts to float. To demonstrate you can check the following code:

public class ClassWithNumbers
{
    public int IntNumber { get; set; }
    public float FloatNumber { get; set; }
}

// Json Serialization Options to allow literals 
var options = new JsonSerializerOptions
{
    NumberHandling = JsonNumberHandling.AllowNamedFloatingPointLiterals
};

// Json Exmple
string json = @"{""IntNumber"":1,""FloatNumber"":""NaN""}";
ClassWithNumbers obj =     System.Text.Json.JsonSerializer.Deserialize<ClassWithNumbers>(json, options);

Output:
// obj.IntNumber: 1
// obj.FloatNumber: NaN
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文