计算路由信号的功率或数量
我需要一个 C++ 或 Java 函数来计算来自 Wifi 基站的信号数量和功率。此功能将帮助我找到笔记本电脑两个位置之间的差异。
(注:我对第一个问题感到非常抱歉,因为我的英语不好,这个问题附带了翻译,并由我编辑)。
I need a function in C++ or Java to calculate the number and power of signals coming from Wifi base stations. This function will help me to find the difference between two positions, of a laptop.
( Note : i am so sorry about first questions , because i have bad english , and this Q came with translator with editing from me).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有可移植的功能,因为它在不同的操作系统上差异很大。在 Linux 中,您可以在设备文件上进行 ioctl,在 Windows 上...不知道,抱歉。
我认为对于这类问题,谷歌是一个很好的匹配 - 尝试搜索“无线库 java c++”,或“c++ wifi 强度”,玩一下。
There is no portable function for that, because it differes HEAVILY across operating systems. In Linux, you can
ioctl
on the device file, on windows... no idea, sorry.I think for these kind of questions, google is a good match - try searching for "wireless library java c++", or "c++ wifi strength", play around a bit.