Android:如何扫描所有记录其 RSSI 和小区 ID 的可见基站?
我正在进行一项研究,要求我记录 GSM/CDMA 基站(在特定时间所有可见)。我读过一些工作,其中人们报告说他们可以扫描 5-6 个基站并记录其 id 和 RSSI 值。我试图深入研究,但只能扫描一个连接的基站。我认为这是可能的,但在网上找不到任何相同的文档。还有一些开发的应用程序可以提供 GSM 地图或其他东西,但不知道如何提供。
I was working on a research which requires me to record GSM/CDMA base stations (all visible at a particular time). I read some work in which people reported that they can scan 5-6 base stations logging their id and RSSI values. I tried to dig in but was just able to scan for the one connected Base Station. I think it is possible but couldn't find any documentation for the same, online. Also there are some apps developed which give GSM map or something, but no idea how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找的是 Android 电话管理器。
http://developer.android.com/reference/android/telephony/TelephonyManager.html
检查 getNeighboringCellInfo() 方法
getNeighboringCellInfo() 方法取决于手机型号,在某些手机上它可以使用,而在某些手机上则不能。看来这是一个你会感受到android碎片化痛苦的地方。我希望它对你有用..
I think what you are looking for is the android telephony manager.
http://developer.android.com/reference/android/telephony/TelephonyManager.html
Checkout the getNeighboringCellInfo() method
The getNeighboringCellInfo() method is dependant on the phone model on some phones it works and on some it doesnt. It seems this an area where you will feel the pain of android fragmentation. I hope it works for you..