Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.net.wifi.WifiManager;

import android.text.TextUtils;

public class Main {

    public static String getWifiName(Context mContext) {
        String str;
        str = ((WifiManager) mContext.getSystemService(Context.WIFI_SERVICE)).getConnectionInfo().getBSSID();
        return TextUtils.isEmpty(str) ? "" : str;
    }
}