繁体   English   中英

使用Java代码启用便携式Wi-Fi热点

[英]Use java code to enable portable wi-fi hotspot

目前,我正在为我的Android手机构建一个非常小的本机应用程序。 当我单击应用程序中的一个按钮时,我想激活便携式wi-fi热点。 但是我不知道如何调用Android API来激活便携式wi-fi热点。 我知道如何通过用户界面进行操作。 谁能告诉我?

// code to enable portable wifi hotspot
public void EnableWifiHotspot(){
  try{
      WifiManager wifi_manager = (WifiManager) this.getSystemService(Context.WIFI_SERVICE);
          WifiConfiguration wifi_configuration = null;


          Method wifiHotspotEnabledMethod=wifi_manager.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, boolean.class);
          wifiHotspotEnabledMethod.invoke(wifi_manager, wifi_configuration, true);
   }
   catch (NoSuchMethodException e) 
      {

         e.printStackTrace();

      } 
      catch (IllegalArgumentException e) 
      {

         e.printStackTrace();

      } 
      catch (IllegalAccessException e) 
      {

         e.printStackTrace();

      } 
      catch (InvocationTargetException e) 
      {

         e.printStackTrace();

      }

}

//code for disabling portable wifi hotspot
 public void DisableWifiHotspot(){
  try{
      WifiManager wifi_manager = (WifiManager) this.getSystemService(Context.WIFI_SERVICE);
          WifiConfiguration wifi_configuration = null;


          Method wifiHotspotEnabledMethod=wifi_manager.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, boolean.class);
          wifiHotspotEnabledMethod.invoke(wifi_manager, wifi_configuration, false);
   }
   catch (NoSuchMethodException e) 
      {

         e.printStackTrace();

      } 
      catch (IllegalArgumentException e) 
      {

         e.printStackTrace();

      } 
      catch (IllegalAccessException e) 
      {

         e.printStackTrace();

      } 
      catch (InvocationTargetException e) 
      {

         e.printStackTrace();

      }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM