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.net.wifi.WifiInfo;

public class Main {
    public static String getWifiMac1(Context context) {
        WifiManager wifi = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
        if (wifi != null) {
            WifiInfo info = wifi.getConnectionInfo();
            String mac = info.getMacAddress();
            return mac;
        }

        return "";
    }
}