Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Qt 中获取网络网关地址?(linux)
我正在尝试使用标准 Qt 库获取网关。我正在使用 QHostAddress、QNetworkInterface 等,但我无法提取网关。
你有什么主意吗?
它没有在 Qt 中实现。
http://qt-project.org/forums/viewthread/7497
您可以在评论中找到适用于 windows 和 linux 的解决方案
在 Linux 和 Android 上读取 /proc/net/route 例如
QFile file("/proc/net/route"); QByteArray content = file.readAll(); file.close();
我已经解析了route -n获取默认网关的命令。
route -n