Android上的Wifi感知与Wifi P2P之间有何区别?

Android上的Wifi感知与Wifi P2P之间有何区别?,第1张

概述WiFi感知和WiFiP2P技术之间的主要区别是什么?使用WiFiP2P,您可以在不需要公共网络的情况下在两个或多个附近的设备之间建立连接.但是androiddocsspec还指出Wi-FiAwarecapabilitiesenabledevicesrunningAndroid8.0(APIlevel26)andhighertodiscoverandconn

WiFi感知和WiFi P2P技术之间的主要区别是什么?

使用WiFi P2P,您可以在不需要公共网络的情况下在两个或多个附近的设备之间建立连接.但是android docs spec还指出

Wi-Fi Aware capabilitIEs enable devices running Android 8.0 (API level
26) and higher to discover and connect directly to each other without
any other type of connectivity between them.

它们之间有什么区别?

解决方法:

根据AndroID文档,使用Wi-Fi Aware,您可以在服务发现阶段在设备之间发送数据(仅轻量级!最大255个字节),并且在需要时可以打开设备之间的连接以发送更大的数据.使用Wi-Fi对等网络时,必须先执行某种身份验证,然后再打开套接字,然后才能在设备之间发送数据.

以下是我获得这些信息的Wi-Fi aware overview部分:

The Wi-Fi Aware APIs let apps perform the following operations:

discover other devices: […] After the subscriber discovers a publisher, the subscriber can either send a short message or establish a network connection with the discovered device.Create a network connection: After two devices have discovered each other […] they can create a bi-directional Wi-Fi Aware network connection without an access point.

Note: Messages are generally used for lightweight messaging, as they might not be delivered (or be delivered out-of-order or more than once) and are limited to about 255 bytes in length.

此外,使用Wi-Fi Aware,开发人员可以在discoverySession类的createNetworkSpecifIEropen()方法和createNetworkSpecifIErPassphrase()方法之间进行选择,以分别打开设备之间的未加密或加密连接.

使用Wi-Fi对等时,开发人员除了wifip2pManager.connect()方法外别无选择.调用它会在所连接的设备上触发一个对话框(按钮配置),并且仅当两个设备首次相互连接时才会出现该对话框.顺便说一句…修改wifip2pConfig的WpsInfo是没有用的.它将始终使用“按钮配置”选项.

有关更多信息,请访问Wi-Fi peer-to-peer overview.

总结

以上是内存溢出为你收集整理的Android上的Wifi感知与Wifi P2P之间有何区别?全部内容,希望文章能够帮你解决Android上的Wifi感知与Wifi P2P之间有何区别?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1081160.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存