Json.NET decimal precision loss

﹥>﹥吖頭↗ 提交于 2019-12-11 02:34:17

问题


I have an issue with deserializing decimal value.

JObject.Parse("{\"available\":8777.831438322572000}")

If I type this code in VS under debugger the result is

"available": 8777.8314383225716

If I try this

obj.Value<decimal>("available")

the result is 8777.83143832257

Where am I wrong? What api methods should I use to get correct results?


回答1:


The result of JObject.Parse("{\"available\":8777.831438322572000}") is a double. The second statement results in a decimal.

The double has floating point precision, which is not that precise as a decimal.

Required reading: Why Floating-Point Numbers May Lose Precision




回答2:


I find out that this problem doesn't relate to methods which take destination type as an argument. In case of untyped version method there is a setting which allows to change how json.net treats string with decimal separator. JsonReader.FloatParseHandling default value is FloatParseHandling.Double In my case the way to get correct results is:

JObject.Load(new JsonTextReader(new StringReader(value)) { FloatParseHandling = FloatParseHandling.Decimal }, null)

JsonSerializer and JsonSerializerSettings contain the same setting.



来源:https://stackoverflow.com/questions/51205166/json-net-decimal-precision-loss

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!