gpt4 book ai didi

c# - 反序列化为 double 时 JsonConvert 抛出 'not a valid integer' 异常

转载 作者:太空狗 更新时间:2023-10-29 18:31:19 35 4
gpt4 key购买 nike

当我尝试从 JSON 字符串反序列化为对象时出现异常。

输入字符串“46.605”不是有效整数。路径“纬度中心”

这真的很奇怪,因为 JsonConvert 试图将一个属性反序列化为一个整数,但它实际上是一个 double 而不是一个整数。。 p>

我已经 checkin 了我的 Web API 项目。我的类中的属性是 double 的,并且在 Web 项目中相同。

我在我的 web asp 项目中使用的代码:

using (var client = new HttpClient())
{
client.BaseAddress = new Uri("myWebApiHostedUrl");
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

// Get the response
HttpResponseMessage response = await client.GetAsync("api/NewMap/?SouthLatitude=46.600&WestLongitude=7.085&NorthLatitude=46.610&EastLongitude=7.095&Width=900&Height=900&isVoxelMap=true");
string jsonData = response.Content.ReadAsStringAsync().Result;

//Exception here
NewMap dataMewMap = JsonConvert.DeserializeObject<NewMap>(jsonData, new JsonSerializerSettings() { Culture = CultureInfo.InvariantCulture,FloatParseHandling= FloatParseHandling.Double });
}

这是我的类(class):

public class NewMap
{
// ...
public double LatitudeCenter { get; set; }
public double LongitudeCenter { get; set; }
// ...
}

我的 JSON 内容:

{
// ...
"LatitudeCenter":46.605,
"LongitudeCenter":7.09,
"SouthLatitude":46.6,
"ImageBingUrl":null,
"PercentEnvironement_Plain":0,
// ...
}

最佳答案

这很可能是因为您的区域设置使用了不同于“点”的东西来表示 double 的整数部分之后的内容,例如 fr-FR 文化。

一个粗略的猜测是 JsonConvert 类使用方法来解析来自 .NET 的数字(毕竟没有理由不这样做),例如 Double.TryParse .默认情况下,这些非常方法会考虑到您当前的文化

尝试将 JsonConvert 的文化设置为 CultureInfo.InvariantCulture

关于c# - 反序列化为 double 时 JsonConvert 抛出 'not a valid integer' 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34516642/

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