Android 是否支持 Wi-Fi Adhoc 模式操作?
我对 Android 相当陌生,我正在尝试在我的应用程序中使用 Wi-Fi Adhoc 模式。但我找不到任何 API 或方法来设置相同的内容。我在 Android 论坛上阅读了一个帖子,但没有找到关于如何在 Android 中启用 Adhoc 模式的具体解决方案。我曾经在 Linux 中使用 WPA_Supplicant conf 文件来启用 Adhoc 模式。
我想知道是否可以从我的应用程序在 Android 中启用 Wi-Fi Adhoc 模式以及如何执行相同操作。
提前致谢。
I am fairly new to Android and I am trying to use Wi-Fi Adhoc Mode in my application. But I could not find any API or method to set the same. I read a thread in Android Forum and could not come any concrete solution on how to use enable Adhoc mode in Android.I used to use WPA_Supplicant conf file in Linux to enable Adhoc mode.
I would like know if I can enable Wi-Fi Adhoc mode in Android from my application and how to do the same.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前不支持此功能,但问题已被接受并且将来应该可以使用。
需要修改才能使其工作的文件是 /system/etc/wifi/tiwlan.ini,就像 thomasrutter 提到的那样,但需要 root 访问权限才能修改该文件。
It is not supported currently but the issue has been accepted and should be available in the future.
The file that would need to be modified to make it work is /system/etc/wifi/tiwlan.ini, like thomasrutter mentioned, but it will require root access to modify the file.
这可能会有所帮助。它是 HTC Hero(Android 设备)的说明,并展示了如何修改 tiwlan.ini 和 wpa_supplicant.conf 以启用 ad-hoc wifi。
http://blog. joint.net/2009/07/connecting-android-phone-through-adhoc.html?showComment=1277115947367#c3774826726667256208
有关添加到 tiwlan 和 wpasupplicant 文件的内容,请参见此处:
http://modmymobile.com/forums/491- root-access/544146-connect-g1-ad-hoc-network-solved.html
想必您认识 adb 命令 - 这些命令仅用于从开发 PC 向设备传输文件或从设备传输文件,然后重新安装/system 分区 - 您可能希望以编程方式执行此操作。应该可以使用超级用户访问权限,不知道如果没有超级用户访问权限是否可以。
This may help. It's instructions for the HTC Hero (android device) and shows how to modify tiwlan.ini and wpa_supplicant.conf to enable ad-hoc wifi.
http://blog.joint.net/2009/07/connecting-android-phone-through-adhoc.html?showComment=1277115947367#c3774826726667256208
And for what to add to the tiwlan and wpasupplicant files, see here:
http://modmymobile.com/forums/491-root-access/544146-connect-g1-ad-hoc-network-solved.html
Presumably you recognise the adb commands - these are just for transferring the files to and from the device from your development PC and then remount the /system partition - you would probably want to do this programmatically instead. Should be doable with superuser access, dunno if it's possible without.