gpt4 book ai didi

iphone - 如何将 unsigned int 值转换为 IP 地址(如 255.255.255.255)?

转载 作者:行者123 更新时间:2023-12-03 20:20:36 25 4
gpt4 key购买 nike

我正在使用一个 API,该 API 将服务器的 IP 地址作为 unsigned int 值返回。从中生成一个 NSString 并以“255.255.255.255”格式显示 IP 地址的最简单方法是什么?

最佳答案

我不确定它在 Objective C 中是如何完成的,但由于它是 C 的超集,你可以从以下开始:

unsigned ip = whateverNumber;

char firstByte = ip & 0xff;
char secondByte = (ip>>8) & 0xff;
char thirdByte = (ip>>16) & 0xff;
char fourthByte = (ip>>24) & 0xff;

char buf[40];

sprintf(buf, "%i.%i.%i.%i", firstByte, secondByte, thirdByte, fourthByte);

代码未经测试,但应该可以这样工作。

关于iphone - 如何将 unsigned int 值转换为 IP 地址(如 255.255.255.255)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3944148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com