我正在制作一个iPhone应用程序,并且需要将主机名的字符串解析为IP地址的字符串。例如,“MyComputer.local”->“192.168.0.7”。我尝试做一些事情,但没有一个奏效。这就是我现在所拥有的:

struct hostent *hostentry;
hostentry = gethostbyname("MyComputer.local");
char *ipbuf = NULL;
inet_ntop(AF_INET, hostentry->h_addr_list[0], ipbuf, hostentry->h_length);
ipAddress = [NSString stringWithFormat:@"%s" , ipbuf];

由于某种原因,它总是在inet_ntop上崩溃,是的,我正在使用现有的主机名进行测试。谢谢!

最佳答案

代替inet_ntop尝试inet_ntoa

它有助于分解复合语句:

struct hostent *hostentry;
hostentry = gethostbyname("zaph.com");
NSLog(@"name: %s", hostentry->h_name);

struct in_addr **addr_list;
addr_list = (struct in_addr **)hostentry->h_addr_list;
char* ipAddr = inet_ntoa(*addr_list[0]);

NSString *ipAddress = [NSString stringWithFormat:@"%s", ipAddr];
NSLog(@"ipAddress: %@", ipAddress);

输出:

名称:zaph.com
ip地址:72.35.89.108

关于ios - 将主机名字符串解析为IP字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28204094/

10-08 21:26