QT应用---WIFI连接
QT 有用于检测无线网络的 API 吗?如果没有,是否还有其他跨平台的方法来检测无线网络?
Does QT have any APIs for detecting wireless networks? If not, are there any other cross-platform means of detecting wireless networks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Qt 没有开箱即用的 wifi 支持,wifi 太特定于平台了。使用本机 API 来处理 wifi。
Qt has no wifi support out of the box, wifi is too platform-specific. Use native API's for working with wifi.
QNetworkInterface 是最接近的类,AFAICT,但正如 Raiv 所说,Qt 不支持Wifi 网络检测。
您可以构建 GUI 和使用 Qt 控制逻辑,但您必须在其他地方寻找跨平台 wifi 库(如果存在,否则您必须为您想要支持的每个平台编写自己的库)。
QNetworkInterface is the closest class, AFAICT, but as Raiv says, Qt does not support Wifi-network detection.
You can build the GUI & controlling logic with Qt, but you must look elsewhere for a cross-platform wifi library (if any exist, otherwise you have to write your own for every platform you want to support).