大整数上的 SBJSONParser

发布于 2024-12-06 10:23:34 字数 196 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话墙 2024-12-13 10:23:34

我找到了解决方案,更新到最新版本的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文