最近写个程序需要获取本机用于连接的IP地址,经过很多的尝试后,最终使用的方法如下:

  1. 使用cmd命令    netstat  | findstr “192.168.6.66:3333” > D:\\localAddress.txt

    其中“192.168.6.66:3333”是我的程序连接的服务器的ip地址,运行netstat命令后,找到其中包含了“192.168.6.66:3333”的那一行,并将结果输出到 localAddress.txt 中,localAddress.txt中的结果可能如下图所示

      C++获取本机用于连接的IP地址-LMLPHP

  2.读取 localAddress.txt 中的内容,并解析出本机用于连接的ip地址为 192.168.4.45

  • 我是使用CreateProcess函数运行cmd命令,可以避免出现cmd命令窗口,也能等待cmd命令运行结束再往下运行。

  代码如下:

      std::string path =  "D:\\localAddress.txt";
//创建用于保存本机IP地址的localAddress.txt
std::ofstream fout(path);
if (fout) // 如果创建成功
{
fout << "" << std::endl;
fout.close(); // 执行完操作后关闭文件句柄 std::string ptr;
std::string output;
ptr="cmd /c netstat | findstr \"192.168.6.66:3333 > ";
ptr += path; STARTUPINFO si;
PROCESS_INFORMATION pi; ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
//隐藏掉可能出现的cmd命令窗口
si.dwFlags = STARTF_USESHOWWINDOW;
si.wShowWindow = SW_HIDE;
ZeroMemory(&pi, sizeof(pi)); // Start the child process.
if (CreateProcess(NULL, // No module name (use command line)
(LPSTR)(LPCTSTR)ptr.c_str(), // Command line
NULL, // Process handle not inheritable
NULL, // Thread handle not inheritable
FALSE, // Set handle inheritance to FALSE
, // No creation flags
NULL, // Use parent's environment block
NULL, // Use parent's starting directory
&si, // Pointer to STARTUPINFO structure
&pi) // Pointer to PROCESS_INFORMATION structure
)
{ // Wait until child process exits.
WaitForSingleObject(pi.hProcess, INFINITE); std::fstream ffileTemp(path); //作为读取文件打开
if (ffileTemp)
{
char buffer[];
while (!ffileTemp.eof())
{
ffileTemp.getline(buffer, , '\n');
std::string temp = buffer;
if (temp.find("ESTABLISHED") != std::string::npos)
{
output += temp;
break;
}
}
ffileTemp.close();
} if (output.length() > )
{
output.erase(, output.find_first_not_of(" "));
std::string localip, temp;
temp = output.substr(output.find_first_of(" "));
temp.erase(, temp.find_first_not_of(" "));
temp = temp.substr(, temp.find_first_of(" ")); localip = temp.substr(, temp.find_first_of(":")); //获得ip地址 }
}
}
05-08 15:24