- 浏览: 881534 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (509)
- android (55)
- CSS (23)
- eclipse (25)
- Data Structes and Algorithms (53)
- J2SE (87)
- Java_面试学习_j2se (26)
- java_面试学习_非技术 (13)
- java_gui (2)
- java_设计模式 (27)
- JDBC (10)
- java_web (15)
- hibernate (5)
- Oracle (37)
- Struts2 (7)
- Word-----dos (24)
- Jbpm (3)
- java小技巧 (8)
- math (1)
- flex (12)
- WebService (4)
- 生活 (9)
- 小框架或小语言 (27)
- spring (1)
- 面试~~~软实力 (7)
- jstat的用法 (1)
- jmap (1)
- 数据链路层和传输层的流量控制区别 (1)
- shell (0)
- 财商 (1)
- javascript (0)
- js研究 (1)
- 代码收集 (0)
最新评论
-
海尔群:
http://jingyan.baidu.com/articl ...
android加密 -
完美天龙:
------------------------- ...
asm----字节码操纵 -
houniao1990:
大神,请问 string 类型 定义为 oracle的 cha ...
hibernate注解 -
JamesQian:
Line:103
f.doFilter(msg);
是否需 ...
责任链模式_过滤器模式 -
sacoole:
好评
interview--- 如何从N个数中选出最大(小)的n个数?
. Confirm if Wifi is On Using isEnabled() in WifiManager. If not, use setEnabled(true) to turn on it. Note: May take some time, suggest to wait 1~3 seconds. 2. Scan AP Using scanAP() in WifiManager The result will not reply immediately, so we set a receiver to receive the result latter. The receiver should extend from BroadcastReceiver to receive the broadcast message. Ex: if( wifiManager.startScan()){ IntentFilter inf = new IntentFilter(); inf.addAction(WifiManager.SCAN_RESULT_AVAILABLE_ACTION); registerReceiver(new WifiResultManager(), inf); } class WifiResultManager extends BroadcastReceiver{ public WifiResultManager(){ } public void onReceive(Context cxt, Intent it){ //Do something } } 3. Connect to AP Using WifiConfiguration to set the specified settings. (1) If a password is needed, you should set to string wepKeys[i] (i=1~3). If the password only contains 0-9A-Fa-f (Hex), you can just put the password to the string, but if it have ascii codes, you should add additional \" to both side of the string. (Ex: if password="wifimanager00", you should save as "\"wifimanager00\"") (2) Set the BSSID but SSID. Note: I don't know why it's not work after I set the SSID. (3) Choose the correct settings. For example, you can set it for open network. conf.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); conf.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN); conf.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE); conf.status=WifiConfiguration.Status.ENABLED; then add it to manager and enable it. conf.networkId = manager.addNetwork(conf); //At this part, you can check the existing network to update it by using updateNetwork(); //Simplely, just add a new one. manager.enableNetwork(conf.networkId, true); After you done these works, you will find that, yes, the connection is established, but no ip address. This is because it will take some time to get the IP Address from AP. You can add another receiver to listen the NETWORK_STATE_CHANGED_ACTION message. In general, it may take 3~10 seconds to get the correct IP Address. Now, you can use it. Have fun to your Java.
mScanResult.capabilities的几个参数的含义:
capabilities=[WPA2-PSK-CCMP]
capabilities=[WPA-PSK-TKIP]
意思是:
认证类型:WPA-PSK 和 WPA2-PSK
加密算法:TKIP 和 AES,CCMP
Describes the authentication, key management, and encryption schemes supported by the access point. (就是路由器支持的认证类型, key管理类型以及加密协议)
获取本台手机的wifi网卡ip
public String getIpAddress(){ String ip = null; if(mWifiInfo!=null){ ip = int2Ip(mWifiInfo.getIpAddress()); } return ip; } private String int2Ip(int i) { return ((i >> 24 ) & 0xFF ) + "." + ((i >> 16 ) & 0xFF) + "." + ((i >> 8 ) & 0xFF) + "." + ( i & 0xFF) ; }
SSID指AP设备名称,BSSID指AP设备的MAC地址
android连接加密网络,其中 一个netId对应一个config,所以只要有netId就可以连接网络
WifiManager wifiManager = (WifiManager)getSystemService(Context.WIFI_SERVICE); boolean bRet1 = wifiManager.setWifiEnabled(true); //add network if (wifiManager.startScan()) //扫描可用的无线网络 { List<ScanResult> scanResultList = wifiManager.getScanResults(); for (int i = 0; i < scanResultList.size(); i++) { ScanResult scanRet = scanResultList.get(i); if (scanRet.SSID.equalsIgnoreCase("TEST")) //找到 TEST { WifiConfiguration config = new WifiConfiguration(); config.SSID = "\"" + scanRet.SSID + "\""; config.preSharedKey = "\"password\""; //指定密码 config.hiddenSSID = true; config.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN); config.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); config.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); config.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); config.allowedProtocols.set(WifiConfiguration.Protocol.WPA); config.status = WifiConfiguration.Status.ENABLED; int netID = wifiManager.addNetwork(config); Log.d("WifiPreference", "add Network returned " + netID ); boolean bRet = wifiManager.enableNetwork(netID, true); Log.d("WifiPreference", "enableNetwork returned " + bRet ); } } }
发表评论
-
EditText失去焦点
2011-12-25 13:57 1107<LinearLayout andr ... -
调用照相机和相册
2011-12-21 19:26 1509直接下代码看吧。。 ... -
wifi流程详细分析
2011-12-09 23:56 10945一.启动wifi服务 1.在 S ... -
Android WifiManager 常量
2011-12-09 00:20 6057ACTION_PICK_WIFI_NETWORK Activ ... -
android 探索首选项框架xxxPreference
2011-12-08 20:50 1783http://blog.csdn.net/qinjuning/ ... -
Tab
2011-12-01 16:02 1279public class MyTab extends ... -
color
2011-12-01 10:48 1128<?xml version="1.0&qu ... -
EditText属性解释
2011-12-01 09:31 2445EditText继承关系:View-->TextView ... -
Android之Inflate()方法用途
2011-11-30 10:40 3220原文: Inflate()作用就是将xml定义的一个布局找出 ... -
android 自定义listview无法响应点击事件OnItemClickListener
2011-11-29 22:34 2809如果你的自定义ListViewItem中有Button或者 ... -
事件event
2011-11-29 22:34 1029private class OnItemClickLis ... -
gridView ---图片显示类九宫格
2011-12-01 09:23 3174<GridView xmlns:android= ... -
Image gallery
2011-11-25 14:36 5<ImageSwitcher ... -
Image gallery
2011-11-25 14:36 1138public class ImageShowActiv ... -
Image gallery
2011-11-25 14:36 4public class ImageShowActiv ... -
Image gallery
2011-11-25 14:36 4public class ImageShowActiv ... -
Image gallery
2011-11-25 14:36 4public class ImageShowActiv ... -
Menu
2011-11-25 11:22 1058按menu按钮弹出来的东西 public static ... -
listView
2011-11-25 10:35 2207android.R.layout.simple_list_it ... -
手机模拟器上安装apk
2011-11-17 17:07 12961. 在D:\android\android-sdk-wind ...
相关推荐
WiFi Scanner Unmatched level of details for every signal / AP Support for WiFi: Technologies: WiFi 7/802.11be, WiFi 6E/802.11ax in 6GHz, WiFi 6/802.11ac, WiFi 5/802.11ac and older Channel widths: 320...
在Android平台上,连接WiFi和创建WiFi热点是两个重要的网络功能,尤其对于移动设备而言,它们在日常生活和工作中扮演着至关重要的角色。这个“Android 连接WiFi和创建WIFI热点 demo”应该是一个示例项目,它展示了...
**WiFi直连技术详解** WiFi Direct,又称为WIFI P2P,是一种允许设备之间无需通过无线路由器直接建立连接的技术。这项技术在Android系统中得到了广泛的应用,使得Android设备能够快速、便捷地进行数据传输、设备...
Unity WiFi控制器是一个在Unity游戏引擎环境下使用的插件,主要用于实现对设备WiFi功能的控制。Easy WiFi Controller v1.95是这个插件的特定版本,它提供了方便的API和界面,使得开发者能够在游戏或应用程序中集成...
腾讯WiFi 适用于win10的驱动。 腾讯随身WiFi,是个一个很老的USB设备了。现在官网主页已经打不开了。无意间翻出来这个设备,插上去还能用,但不是免驱了。找了很多网上的驱动都不能用在win10和win11上,安装提示“不...
【标题】: "公司电脑如何禁用随身WiFi及360随身WiFi的解决方案" 【描述】: "随着随身WiFi设备的普及,员工在公司电脑上使用这些设备为个人电子设备提供网络,可能对办公环境造成干扰,消耗公司网络资源。本文将介绍...
Android 11 WiFi 模块 WiFi 打开函数调用流程图 Android 11 中的 WiFi 模块是如何打开的?下面是 WiFi 打开函数调用流程图的详细解释。 首先,用户打开 WiFi 时,系统会调用 WifiServiceImpl.java 中的 ...
1.同时连接网线(局域网),4g,wifi; 2.局域网一直保持畅通, 4G和wifi同时连接时,使用wifi网络;wifi关闭时使用4G网络;4G关闭时,使用wifi网络;可以来回切换. 3.设置--显示中加入了切换以太网和wifi网络优先级开关. 4....
幻影WIFI是最好用的智能手机WiFi管理工具。所有的热点信息基于云端数据库,内置全国百万WiFi热点数据,随时随地轻松接入无线网络,最大化使用各种联网的移动服务,扫除无网断网的状态,尤其适合商务人群、移动人群和...
**PyWiFi工具包详解** PyWiFi是一个Python库,专门用于管理电脑上的无线网络接口,它提供了操作无线网络连接的能力,包括扫描可用网络、连接到指定的网络、创建和管理网络等。这个工具包使得在Python环境中进行无线...
标题中的“WiFi发射功率查看”指的是在个人计算机(PC)上使用特定的软件来监测和分析无线网络(WiFi)的发射功率以及信号强度。这样的工具对于网络管理员、技术人员或者普通用户来说都非常重要,因为他们可以借此...
Python3在标准库中并未内置对WiFi管理的支持,但开发者们通过第三方模块弥补了这一空白。"pywifi-模块.zip"就是这样一个资源,它提供了一个名为`pywifi`的Python库,专门用于处理与WiFi相关的任务。这个压缩包包含了...
WiFi连接和断开是无线网络使用中的常见现象,涉及到多个技术层面的问题。UUID(Universally Unique Identifier)和GUID(Globally Unique Identifier)在这一过程中也有特定的应用。这两个术语虽然在概念上略有不同...
echo 'PWD: ' .decryptStrin( $wifi ->pwd). " " ; echo 'BSSID: ' . $wifi ->bssid. " " ; if ( $wifi ->xUser){ echo 'xUser: ' . $wifi ->xUser. " " ; echo 'xPwd: ' . $wifi ->xPwd. " " ...
在Android平台上,实现WiFi连接与断开是一项基本且重要的任务,尤其对于开发涉及网络功能的应用时。本节将深入探讨如何构建一个可以完全替代系统原生WiFi管理功能的应用,包括搜索WiFi热点、按信号强度排序、按钮...
海豚音Wi-Fi是一款纯软件的广告路由器,是实体店WiFi商业和微网站入口,可以让普通路由器变为WiFi广告路由器! 支持微信、手机短信、邮件等二次营销!独家微信一键关注、分享朋友圈上网!帮助店家轻松实现吸粉、加粉...
SDIOWIFI调试记录 本文将详细介绍如何将Marvell+88W8686芯片的SDIOWIFI模块驱动移植到三星E4412平台的方法。 SDIOWIFI模块驱动移植 SDIOWIFI模块驱动是用于管理SD卡接口WIFI模块的驱动程序。在本文中,我们将详细...
在Android平台上,开发一款应用来获取并显示附近的WiFi列表,并能根据信号强度实时更新,是一项常见的功能需求。这个过程涉及到Android系统的网络管理服务、BroadcastReceiver、ContentResolver以及对WiFi扫描结果的...
Android WiFi Display功能优化 Android WiFi Display功能优化是指在Android系统中,WiFi Display功能的优化建议,以提高该功能的性能和可维护性。本文将从架构图、代码分析和优化建议三个方面对Android WiFi ...
MTK Openwrt wifidog 移植是将Wi-Fi狗(wifidog)安全访问控制软件集成到基于MediaTek(MTK)芯片的OpenWrt路由器系统中的过程。OpenWrt是一个开源的嵌入式操作系统,常用于路由器等网络设备,提供高度自定义的...