windows下获取dns地址

利用nslookup获取dns服务器地址,再通过正则表达式过滤。

1. 利用nslookup获取服务器信息

  • process.start("cmd", QStringList()<<"/c"<<"nslookup %COMPUTERNAME% | findstr /i address");
  • /i为匹配不区分大小写。

2. 正则筛选dns

  • QRegExp reg("[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}")
  • reg.cap(0)为dns地址;

3. 运行示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <QCoreApplication>
#include <QProcess>
#include <QDebug>
#include <QRegExp>

int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);

QProcess process;
process.start("cmd", QStringList()<<"/c"<<"nslookup %COMPUTERNAME% | findstr /i address");
process.waitForStarted(3000);
process.waitForFinished(3000);
QString info = process.readAllStandardOutput().trimmed();

QStringList infos = info.split("\r\n");

QRegExp reg("[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}");
QString dns;
for (int i = 0; i < infos.count(); i++) {
if (reg.indexIn(infos.at(i)) != -1) {
dns = reg.cap(0);
break;
}
}

return a.exec();
}