大整数上的 SBJSONParser
我正在使用 json-framework 解析 iPhone 项目中的 JSON 数据。但是json数据中有很大的数字,比如10432159274,就会导致NSNumber溢出。在 SBJsonParser.h 中,文档说 JSON 中的数字将转换为 NSNumber 或 NSDecimalNumber。我如何使用它以便将大整数解析为 NSDecimalNumber ?谢谢。
I'm using json-framework to parse JSON data in an iPhone project. But there's a large number in the json data, such as 10432159274, it will make NSNumber overflow. In the SBJsonParser.h, the doc says Numbers in JSON will be converted to NSNumber or NSDecimalNumber. How can I use it so the large integer will be parsed as a NSDecimalNumber? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案,更新到最新版本的 SBJSON 即可解决。新版本使用 numberWithLongLong 来表示最多 19 位数字的整数。
I find the solution, updating to the newest version of SBJSON will solve it. The new version using numberWithLongLong to represent integers that has up to 19 digit.