Android:如何获取当前设备的WiFi直接名称

时间:2014-10-30 02:23:23

标签: android wifi wifi-direct device-name

在P2P设置中,我了解如何获取其他设备的名称,但如何获取自己设备的名称? (在设置中以WiFi-direct显示的那个)。

我检查了WiFiManagerWiFiInfo等,但没有成功。

3 个答案:

答案 0 :(得分:13)

在您的设备上打开wifi后,会发送WIFI_P2P_THIS_DEVICE_CHANGED_ACTION广播。您可以使用广播接收器捕获此信息,您可以获得WifiP2pDevice对象,即您的设备。

 @Override
 public void onReceive(Context context, Intent intent) {
     WifiP2pDevice device = intent.getParcelableExtra(WifiP2pManager.EXTRA_WIFI_P2P_DEVICE);
     String thisDeviceName = device.deviceName;
 }

答案 1 :(得分:0)

试试这段代码:

public static String getHostName(String defValue) {
    try {
        Method getString = Build.class.getDeclaredMethod("getString", String.class);
        getString.setAccessible(true);
        return getString.invoke(null, "net.hostname").toString();
    } catch (Exception ex) {
        return defValue;
    }
}

答案 2 :(得分:0)

仅在您的广播接收器中,

 if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) { 
        WifiP2pDevice myDevice =(WifiP2pDevice)intent.getParcelableExtra(WifiP2pManager.EXTRA_WIFI_P2P_DEVICE);
        Log.d("Wifi Direct: My Device",myDevice.devicename); 
    }