反序列化为double时,JsonConvert会抛出一个“非有效整数”异常

时间:2015-12-29 18:15:54

标签: c# json asp.net-web-api double deserialization

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

Input string '46.605' is not a valid integer. Path 'LatitudeCenter'

这真的很奇怪,因为JsonConvert尝试将反序列化属性作为整数,但实际上是双精度而不是整数

我已经检查了我的Web API项目。我的类中的属性是web项目中的double和same。

我在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 });
}

这是我的班级:

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,
    // ...
}

1 个答案:

答案 0 :(得分:8)

很可能是因为您的区域设置使用了除'dot'之外的其他内容来表示double的整数部分之后的内容,例如fr-FR培养

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

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