从 WiFi 传感器读取 RSSI
请帮助我如何用 Java 编写代码来读取 WiFi 传感器的接收信号强度指示器。 我尝试使用套接字编程来做到这一点,但我所有的尝试都没有得到我想要的。现在我正在查看 J2me,我可能会得到很好的答案,但我发现我可能需要一些建议。 谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的是 Windows 吗? WlanAPI 应该能够告诉您它从 WiFi 接口接收到的信息,因此您需要确保计算机上的 WiFi 接口支持您需要的任何频段。不过,您需要围绕本机 API 构建自己的包装器。
Are you using Windows? WlanAPI should be able to tell you this information which it receives from the WiFi interface so you want to make sure that the WiFi interface on your computer supports whatever bands you need. You neeed to build your own wrappers around the native APIs though.
有一个名为 PlaceLab 的开源项目,我用它来读取我论文中接入点的 RSSI 和 BSSID。当时它托管在 http://www.placelab.org 但似乎无法再访问它,但 SourceForge 上有一个项目页面,此处:http://sourceforge.net/projects/placelab/ 我认为你可以从那里获得 Java 包装器和 Spotter.dll 及其用 C++ 编写的源代码...
there is an opensource project with the name PlaceLab which i used for reading the RSSI and BSSID of Access Point for my thesis.. At that time it was hosted at http://www.placelab.org but seems like it isn't accessible anymore but there a project page at SourceForge, here: http://sourceforge.net/projects/placelab/ from where I think you can get the Java wrapper and Spotter.dll with it's source written in C++ ...