如何将字符串转换为IP地址,反之亦然


Answers:


147

如果需要,请使用inet_ntop()inet_pton()。不要使用inet_ntoa(), inet_aton()和类似的东西,因为它们已经过时并且不支持ipv6。

这是一个不错的指南,其中包含许多示例。

// IPv4 demo of inet_ntop() and inet_pton()

struct sockaddr_in sa;
char str[INET_ADDRSTRLEN];

// store this IP address in sa:
inet_pton(AF_INET, "192.0.2.33", &(sa.sin_addr));

// now get it back and print it
inet_ntop(AF_INET, &(sa.sin_addr), str, INET_ADDRSTRLEN);

printf("%s\n", str); // prints "192.0.2.33"

在Windows下如何使用它们?我应该包括什么?
Safari

5
如果使用winsock,则在Windows Vista和更高版本上使用InetNtop和InetPton。头文件Ws2tcpip.h。提示是看一下msdn上的示例。
米兰

9
Winsock2.h中的WSAAddressToString(ntop)和WSAStringToAddress(pton)。我建议至少升级到Vista,并问您下一次在问问题时指定要开发的平台:)
米兰

2
此链接不再可用
火星

1
@QiFan“ n”代表“网络”,“ p”代表“(文本)演示”。
标记为重复

6

我不确定我是否正确理解了这个问题。

无论如何,您是否在寻找:

std::string ip ="192.168.1.54";
std::stringstream s(ip);
int a,b,c,d; //to store the 4 ints
char ch; //to temporarily store the '.'
s >> a >> ch >> b >> ch >> c >> ch >> d;
std::cout << a << "  " << b << "  " << c << "  "<< d;

输出:

192  168  1  54

4

我能够将字符串转换为DWORD并返回以下代码:

char strAddr[] = "127.0.0.1"
DWORD ip = inet_addr(strAddr); // ip contains 16777343 [0x0100007f in hex]

struct in_addr paddr;
paddr.S_un.S_addr = ip;

char *strAdd2 = inet_ntoa(paddr); // strAdd2 contains the same string as strAdd

我正在使用旧的MFC代码进行维护,因此转换不赞成使用的函数调用不适用。


2

inet_ntoa()将a转换in_addr为字符串:

inet_ntoa函数将(Ipv4)Internet网络地址转换为Internet标准点分十进制格式的ASCII字符串。

inet_addr() 做相反的工作

inet_addr函数将包含IPv4点分十进制地址的字符串转换为IN_ADDR结构的正确地址

PS这是谷歌搜索“ in_addr to string”的第一个结果!


8
这些功能已被弃用,不应使用。
米兰

1
@米兰OK。虽然OP用途in_addr结构是应对IPv4的
CharlesB

在Windows下如何使用它们?我应该包括什么?
Safari

答案在函数的文档中(单击链接):include Winsock2.h。
CharlesB 2011年

2

要将字符串转换为in-addr:

in_addr maskAddr;
inet_aton(netMaskStr, &maskAddr);

要将in_addr转换为字符串:

char saddr[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &inaddr, saddr, INET_ADDRSTRLEN);

1

此示例显示如何从字符串转换为ip,反之亦然:

struct sockaddr_in sa;
char ip_saver[INET_ADDRSTRLEN];

// store this IP address in sa:
inet_pton(AF_INET, "192.0.1.10", &(sa.sin_addr));

// now get it back 
sprintf(ip_saver, "%s", sa.sin_addr));

// prints "192.0.2.10"
printf("%s\n", ip_saver); 

添加标题也很好
Alexis

0

以下是易于使用的,线程安全的c ++函数,用于将uint32_t native-endian转换为string,以及将string转换为uint32_t native-endian:

#include <arpa/inet.h> // inet_ntop & inet_pton
#include <string.h> // strerror_r
#include <arpa/inet.h> // ntohl & htonl
using namespace std; // im lazy

string ipv4_int_to_string(uint32_t in, bool *const success = nullptr)
{
    string ret(INET_ADDRSTRLEN, '\0');
    in = htonl(in);
    const bool _success = (NULL != inet_ntop(AF_INET, &in, &ret[0], ret.size()));
    if (success)
    {
        *success = _success;
    }
    if (_success)
    {
        ret.pop_back(); // remove null-terminator required by inet_ntop
    }
    else if (!success)
    {
        char buf[200] = {0};
        strerror_r(errno, buf, sizeof(buf));
        throw std::runtime_error(string("error converting ipv4 int to string ") + to_string(errno) + string(": ") + string(buf));
    }
    return ret;
}
// return is native-endian
// when an error occurs: if success ptr is given, it's set to false, otherwise a std::runtime_error is thrown.
uint32_t ipv4_string_to_int(const string &in, bool *const success = nullptr)
{
    uint32_t ret;
    const bool _success = (1 == inet_pton(AF_INET, in.c_str(), &ret));
    ret = ntohl(ret);
    if (success)
    {
        *success = _success;
    }
    else if (!_success)
    {
        char buf[200] = {0};
        strerror_r(errno, buf, sizeof(buf));
        throw std::runtime_error(string("error converting ipv4 string to int ") + to_string(errno) + string(": ") + string(buf));
    }
    return ret;
}

公正的警告,截至撰写时,未经测试。但是这些功能正是我进入该线程时所要寻找的。


0

第三个inet_pton参数是指向in_addr结构的指针。成功inet_pton调用后,in_addr将使用地址信息填充该结构。结构的S_addr字段包含以网络字节顺序(反向顺序)的IP地址。

Example : 

#include <arpa/inet.h>
uint32_t NodeIpAddress::getIPv4AddressInteger(std::string IPv4Address) {
    int result;
    uint32_t IPv4Identifier = 0;
    struct in_addr addr;
    // store this IP address in sa:
    result = inet_pton(AF_INET, IPv4Address.c_str(), &(addr));
    if (result == -1) {         
gpLogFile->Write(LOGPREFIX, LogFile::LOGLEVEL_ERROR, _T("Failed to convert IP %hs to IPv4 Address. Due to invalid family of %d. WSA Error of %d"), IPv4Address.c_str(), AF_INET, result);
    }
    else if (result == 0) {
        gpLogFile->Write(LOGPREFIX, LogFile::LOGLEVEL_ERROR, _T("Failed to convert IP %hs to IPv4"), IPv4Address.c_str());
    }
    else {
        IPv4Identifier = ntohl(*((uint32_t *)&(addr)));
    }
    return IPv4Identifier;
}

-1

十六进制IP地址到字符串IP

#include <iostream>
#include <sstream>
using namespace std;

int main()
{
    uint32_t ip = 0x0AA40001;
    string ip_str="";
    int temp = 0;
    for (int i = 0; i < 8; i++){
        if (i % 2 == 0)
        {
            temp += ip & 15;
            ip = ip >> 4;
        }
        else
        {
            stringstream ss;
            temp += (ip & 15) * 16;
            ip = ip >> 4;
            ss << temp;
            ip_str = ss.str()+"." + ip_str;
            temp = 0;
        }
    }
    ip_str.pop_back();
    cout << ip_str;
}

输出:10.164.0.1

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.