Android,配置Wifi Enterprise PEAP & EAP-快速
我正在编写一个应用程序来帮助测试 Android 设备连接到具有不同安全设置(例如 wpa aes peap)的 wlan 的能力。但是,我注意到已发布的 android.net.wifi api 不包含用于设置 peap 和 eap-fast 身份验证所需参数的字段。有谁知道如何以编程方式建立与peap的连接?
下面的链接显示了 WifiConfiguration() 类拥有未发布的字段(例如 eap、phase2、身份、密码)。但是,Eclipse 不允许我在代码中使用这些字段,因为它们并未正式包含在 android api 中。
I am writing an application to help test android devices' capabilities to connect to wlan's with varying security settings (ex. wpa aes peap). However, I noticed that the published android.net.wifi api does not contain fields to set parameters needed for peap and eap-fast authentication. Does anybody know how to establish a connection to peap programatically?
Below is a link that shows the WifiConfiguration() class possessing unpublished fields (ex. eap, phase2, identity, password). However, eclipse will not let me utilize these fields in my code since they are not officially in the android api.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也有类似的问题。解决方案是使用“反射”。
这是一个应该非常适合您的链接。
如何以编程方式创建和读取 WEP/ Android 中的 EAP WiFi 配置?
I was having a similar problem. The solution is to use "Reflection".
Here is a link that should be very applicable to you.
How to programmatically create and read WEP/EAP WiFi configurations in Android?