当前位置: 技术问答>linux和unix
xml 数据转换问题 哪位大神进来帮帮小弟
来源: 互联网 发布时间:2017-03-16
本文导语: 最近做一个项目,我们需要在xml文件读取数据比如c0a80101 这是一个ip,192.168.1.1 是以16进制形式写的, 我们得到这些数据后存到char buf[9]="coa80101" 中, 现在我们需要把这些数据重新组合成ip , 但是现在这些c 0 a 8 ...
最近做一个项目,我们需要在xml文件读取数据比如c0a80101 这是一个ip,192.168.1.1 是以16进制形式写的,
我们得到这些数据后存到char buf[9]="coa80101" 中, 现在我们需要把这些数据重新组合成ip , 但是现在这些c 0 a 8 0 1 0 1
都是char 型的,怎么才能吧c 看成是16 进制的数啊 然后再转换成10进制的数。
我们得到这些数据后存到char buf[9]="coa80101" 中, 现在我们需要把这些数据重新组合成ip , 但是现在这些c 0 a 8 0 1 0 1
都是char 型的,怎么才能吧c 看成是16 进制的数啊 然后再转换成10进制的数。
|
#include
#include
#include
#include
#include
#include
#include
#include
char *ip_h2s(const char *h, char *s)
{
struct sockaddr_in addr;
memset(&addr, 0, sizeof(addr));
addr.sin_addr.s_addr = htonl(strtoul(h, NULL, 16));
strcpy(s, inet_ntoa(addr.sin_addr));
return s;
}
char *ip_h2s_simple(const char *h, char *s)
{
unsigned int n[4];
sscanf(h, "%02x%02x%02x%02x", &n[0], &n[1], &n[2], &n[3]);
sprintf(s, "%d.%d.%d.%d", n[0], n[1], n[2], n[3]);
return s;
}
int main(int argc, char *argv[])
{
char s[16];
printf("%sn", ip_h2s("C0A80101", s));
printf("%sn", ip_h2s_simple("C0A80101", s));
return 0;
}