覆盖 Json 反序列化带有前导零的数字作为十进制而不是八进制值

Override Json deserializing a number with a leading zero as a decimal and not an octal value(覆盖 Json 反序列化带有前导零的数字作为十进制而不是八进制值)
本文介绍了覆盖 Json 反序列化带有前导零的数字作为十进制而不是八进制值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在生成一个 json 对象,

I am generating a json object,

{
   "number":0100
}

当这个对象在 C# 中使用 Newtonsoft.Json 反序列化时,0100 被视为八进制数,因为前导零.有没有办法覆盖此功能并使其将数字视为十进制整数?

When this object is deserialized in C# using Newtonsoft.Json, 0100 is treated as an octal number because of the leading zero. Is there a way to override this functionality and make it consider the number as a decimal integer?

推荐答案

我看过 JsonTextReader.ParseNumber() (数字读取的魔法"发生的方法).我会说这是不可行的.八进制大小写特别处理

I've looked at JsonTextReader.ParseNumber() (the method where the "magic" of number reading happen). I'll say that it isn't doable. The octal case is especially handled

bool flag2 = c == '0' ...

然后

long value2 = text2.StartsWith("0x", StringComparison.OrdinalIgnoreCase) ? 
                  Convert.ToInt64(text2, 16) : 
                  Convert.ToInt64(text2, 8); // Here OCTAL!!!

我还没有找到任何方法来覆盖这个方法(除了重写所有在 Json 解析中执行 everythingRead() 方法)

I haven't found any way to override this method (other than re-writing all the Read() method that does everything in Json parsing)

这篇关于覆盖 Json 反序列化带有前导零的数字作为十进制而不是八进制值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)