Android 通过代码设置、打开wifi热点及热点连接的实现代码

 更新时间:2018年05月21日 11:46:41   作者:qq_24451593  
这篇文章主要介绍了Android 通过代码设置、打开wifi热点及热点连接的实现代码,本文通过实例代码给大家介绍的非常详细,需要的朋友可以参考下

用过快牙的朋友应该知道它们在两天设备之间传输文件的时候使用的是wifi热点,然后另一台便连接这个热点再进行传输。快牙传输速度惊人应该跟它的这种机制有关系吧。不知道它的搜索机制是怎样的,但我想应该可以通过热点的名字来进行判断吧。下面我们就来探讨一下如何自动创建一个wifi热点吧大笑

  创建wifi热点首先需要手机支持,建议开发的哥们整个好点的手机,我们公司那些个山寨设备,几近有一半是不支持热点的;其实创建热点很简单,先获取到wifi的服务,再配置热点名称、密码等等,然后再通过反射打开它就OK了。

  下面我们看看创建热点的代码实现:

package com.tel.lajoin.wifi.hotspot; 
import java.lang.reflect.Method; 
import android.app.Activity; 
import android.content.Context; 
import android.net.wifi.WifiConfiguration; 
import android.net.wifi.WifiManager; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Button; 
public class HotspotActivity extends Activity { 
 private WifiManager wifiManager; 
 private Button open; 
 private boolean flag=false; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  // TODO Auto-generated method stub 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.main); 
  //获取wifi管理服务 
  wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); 
  open=(Button)findViewById(R.id.open_hotspot); 
  //通过按钮事件设置热点 
  open.setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    //如果是打开状态就关闭,如果是关闭就打开 
    flag=!flag; 
    setWifiApEnabled(flag); 
   } 
  }); 
 } 
 // wifi热点开关 
 public boolean setWifiApEnabled(boolean enabled) { 
  if (enabled) { // disable WiFi in any case 
   //wifi和热点不能同时打开,所以打开热点的时候需要关闭wifi 
   wifiManager.setWifiEnabled(false); 
  } 
  try { 
   //热点的配置类 
   WifiConfiguration apConfig = new WifiConfiguration(); 
   //配置热点的名称(可以在名字后面加点随机数什么的) 
   apConfig.SSID = "YRCCONNECTION"; 
   //配置热点的密码 
   apConfig.preSharedKey="12122112"; 
    //通过反射调用设置热点 
   Method method = wifiManager.getClass().getMethod( 
     "setWifiApEnabled", WifiConfiguration.class, Boolean.TYPE); 
   //返回热点打开状态 
   return (Boolean) method.invoke(wifiManager, apConfig, enabled); 
  } catch (Exception e) { 
   return false; 
  } 
 } 
} 

  布局就不写了吧,就一按钮,人人都知道的东西,写了也没啥意思。要实现文件传输,当然我们还需要写一个连接热点的客户端吧。连接热点的流程首先是搜索热点然后再判断热点是否符合规则然后再进行连接。

package com.tel.lajoin.wifiscan; 
import java.util.ArrayList; 
import java.util.List; 
import android.app.Activity; 
import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.content.IntentFilter; 
import android.net.wifi.ScanResult; 
import android.net.wifi.WifiConfiguration; 
import android.net.wifi.WifiManager; 
import android.os.Bundle; 
public class MainActivity extends Activity { 
  private List<ScanResult> wifiList; 
  private WifiManager wifiManager; 
  private List<String> passableHotsPot; 
  private WifiReceiver wifiReceiver; 
  private boolean isConnected=false; 
  private Button connect; 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    init(); 
  } 
  /* 初始化参数 */ 
  public void init() { 
    setContentView(R.layout.main); 
    connect=(Button)findViewById(R.id.connect); 
    wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); 
    wifiReceiver = new WifiReceiver(); 
    //通过按钮事件搜索热点 
    connect.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
        wifiManager.startScan(); 
      } 
    });    
  } 
  /* 监听热点变化 */ 
  private final class WifiReceiver extends BroadcastReceiver { 
    @Override 
    public void onReceive(Context context, Intent intent) { 
      wifiList = wifiManager.getScanResults(); 
      if (wifiList == null || wifiList.size() == 0 || isConnected) 
        return; 
      onReceiveNewNetworks(wifiList); 
    } 
  } 
  /*当搜索到新的wifi热点时判断该热点是否符合规格*/ 
  public void onReceiveNewNetworks(List<ScanResult> wifiList){ 
    passableHotsPot=new ArrayList<String>(); 
    for(ScanResult result:wifiList){ 
      System.out.println(result.SSID); 
      if((result.SSID).contains("YRCCONNECTION")) 
        passableHotsPot.add(result.SSID); 
    } 
    synchronized (this) { 
      connectToHotpot(); 
    } 
  } 
  /*连接到热点*/ 
  public void connectToHotpot(){ 
    if(passableHotsPot==null || passableHotsPot.size()==0) 
      return; 
    WifiConfiguration wifiConfig=this.setWifiParams(passableHotsPot.get(0)); 
    int wcgID = wifiManager.addNetwork(wifiConfig); 
    boolean flag=wifiManager.enableNetwork(wcgID, true); 
    isConnected=flag; 
    System.out.println("connect success? "+flag); 
  } 
  /*设置要连接的热点的参数*/ 
  public WifiConfiguration setWifiParams(String ssid){ 
    WifiConfiguration apConfig=new WifiConfiguration(); 
    apConfig.SSID="\""+ssid+"\""; 
    apConfig.preSharedKey="\"12122112\""; 
    apConfig.hiddenSSID = true; 
    apConfig.status = WifiConfiguration.Status.ENABLED; 
    apConfig.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); 
    apConfig.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); 
    apConfig.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); 
    apConfig.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); 
    apConfig.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); 
    apConfig.allowedProtocols.set(WifiConfiguration.Protocol.RSN); 
    return apConfig; 
  } 
  @Override 
  protected void onDestroy() { 
    super.onDestroy(); 
    /*销毁时注销广播*/ 
    unregisterReceiver(wifiReceiver); 
  } 
}

   代码很简单,而且都有注释的,相信大伙儿能够看明白。  那就这样吧,至于文件传输建议还是去看看socket相关的文章吧。

总结

以上所述是小编给大家介绍的Android 通过代码设置、打开wifi热点及热点的连接的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

相关文章

  • Android使用Jni实现压力锅数据检测效果示例

    Android使用Jni实现压力锅数据检测效果示例

    这篇文章主要介绍了Android使用Jni实现压力锅数据检测效果,涉及Android结合Jni实现进度条模拟压力锅数据监测效果的相关操作技巧,需要的朋友可以参考下
    2017-12-12
  • Android性能调优利器StrictMode应用分析

    Android性能调优利器StrictMode应用分析

    StrictMode意思为严格模式,是用来检测程序中违例情况的开发者工具。最常用的场景就是检测主线程中本地磁盘和网络读写等耗时的操作。这篇文章给大家介绍Android性能调优利器StrictMode应用分析,感兴趣的朋友一起看看吧
    2018-01-01
  • Android Flutter实现上拉加载组件的示例代码

    Android Flutter实现上拉加载组件的示例代码

    既然列表有下拉刷新外当然还有上拉加载更多操作了,本次就为大家详细介绍如何利用Flutter实现为列表增加上拉加载更多的交互,感兴趣的可以了解一下
    2022-08-08
  • Android实现动态高斯模糊效果

    Android实现动态高斯模糊效果

    在Android开发中常常会用到高斯模糊,但有的时候我们可能会需要一个图片以不同的模糊程度展现出来,那如何实现呢,一起通过本文来学习学习吧。
    2016-08-08
  • Android开发环境搭建

    Android开发环境搭建

    本文详细介绍了Android开发环境搭建,十分的详尽,图文并茂,有需要的小伙伴参考下。
    2015-01-01
  • 详解Android aidl的使用方法

    详解Android aidl的使用方法

    AIDL是Android中IPC(Inter-Process Communication)方式中的一种,AIDL是Android Interface definition language的缩写。这篇文章主要介绍了Android aidl的使用方法,感兴趣的朋友跟随小编一起看看吧
    2020-07-07
  • Android flutter Dio锁的巧妙实现方法示例

    Android flutter Dio锁的巧妙实现方法示例

    这篇文章主要为大家介绍了Android flutter Dio锁的巧妙实现方法示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-01-01
  • Android中AOP(面向切向编程)的深入讲解

    Android中AOP(面向切向编程)的深入讲解

    这篇文章主要给大家介绍了关于Android中AOP(面向切向编程)的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2018-09-09
  • Android仿zaker用手向上推动的特效开发【推动门效果】(附demo源码下载)

    Android仿zaker用手向上推动的特效开发【推动门效果】(附demo源码下载)

    这篇文章主要介绍了Android仿zaker用手向上推动的特效,结合完整实例形式分析了Android滑动切换效果的实现步骤与相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2016-07-07
  • Android搜索框组件SearchView的基本使用方法

    Android搜索框组件SearchView的基本使用方法

    这篇文章主要为大家详细介绍了Android搜索框组件SearchView的基本使用方法,感兴趣的小伙伴们可以参考一下
    2016-05-05

最新评论