Obter programaticamente o MAC de um dispositivo Android


91

Preciso obter o endereço MAC do meu dispositivo Android usando Java. Pesquisei online, mas não encontrei nada útil.





Verifique esta solução, ela funciona para mim stackoverflow.com/questions/31329733/…
Gorio

No Android M, esta API está obsoleta, use-a por enquanto: stackoverflow.com/questions/31329733/…
Ehud

Respostas:


114

Como já foi apontado no comentário, o endereço MAC pode ser recebido através do WifiManager .

WifiManager manager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo info = manager.getConnectionInfo();
String address = info.getMacAddress();

Também não se esqueça de adicionar as permissões apropriadas em seu AndroidManifest.xml

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

Consulte as alterações do Android 6.0 .

Para fornecer aos usuários maior proteção de dados, a partir desta versão, o Android remove o acesso programático ao identificador de hardware local do dispositivo para aplicativos que usam as APIs de Wi-Fi e Bluetooth. Os métodos WifiInfo.getMacAddress () e BluetoothAdapter.getAddress () agora retornam um valor constante de 02: 00: 00: 00: 00: 00.

Para acessar os identificadores de hardware de dispositivos externos próximos via Bluetooth e varreduras de Wi-Fi, seu aplicativo agora deve ter as permissões ACCESS_FINE_LOCATION ou ACCESS_COARSE_LOCATION.


11
Também só uma observação: às vezes o endereço mac não pode ser obtido porque o Wi-Fi está desligado no dispositivo
sbrichards

3
O blog vinculado também explica como encontrar esse endereço MAC de uma forma mais geral, que não presuma que a interface de rede usa conexão sem fio.
Stephen C

Lembre-se de usar o contexto para chamar getSystemService.
Tito Leiva

Isso é ótimo para telefones e tablets Android que usam Wifi, mas estou tentando obter o endereço MAC Ethernet em um antigo tablet Gingerbread Android que pode usar Wifi ou Ethernet. alguma ideia sobre como verificar o endereço MAC Ethernet? Obrigado.
Seth

@sbrichards o que você quer dizer com WiFi desligado?
peterchaula,

33

Obter o endereço MAC WifiInfo.getMacAddress()não funcionará no Marshmallow e acima, ele foi desativado e retornará o valor constante de02:00:00:00:00:00 .


3
Qual é a alternativa?
Sam

2
@SameerThigale Depende do que você está tentando alcançar. A ideia por trás disso é que você provavelmente não deveria tentar obter o endereço MAC.
minipif

Não tenho certeza do motivo, mas não consigo encontrar uma nota obsoleta no api doc vinculado. Talvez eles tenham mudado de ideia sobre isso?
DBX12

1
@ DBX12 O método em si não está marcado como obsoleto, embora não esteja documentado. O segundo link aponta para uma nota oficial sobre isso.
minipif de

24
public static String getMacAddr() {
    try {
        List<NetworkInterface> all = Collections.list(NetworkInterface.getNetworkInterfaces());
        for (NetworkInterface nif : all) {
            if (!nif.getName().equalsIgnoreCase("wlan0")) continue;

            byte[] macBytes = nif.getHardwareAddress();
            if (macBytes == null) {
                return "";
            }

            StringBuilder res1 = new StringBuilder();
            for (byte b : macBytes) {
                res1.append(String.format("%02X:",b));
            }

            if (res1.length() > 0) {
                res1.deleteCharAt(res1.length() - 1);
            }
            return res1.toString();
        }
    } catch (Exception ex) {
    }
    return "02:00:00:00:00:00";
}

2
Ele continua me mostrando "02: 00: 00: 00: 00: 00" no Android 7.1.
desenvolvedor Android

Deve ser testado em dispositivo físico em vez de emulador ou dispositivo virtual
pm dubey

Esta abordagem alternativa ainda funciona? ou foi corrigido / corrigido no lado do sistema operacional?
CasualT

1
Ele ainda funciona. Não se esqueça de dar permissão à Internet no arquivo Manifest.
pm dubey de

1
Ele não funciona mais no Android Marshmallow e superior, pois retornará o valor de "02: 00: 00: 00: 00: 00"
SweArmy

11
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

public String getMacAddress(Context context) {
    WifiManager wimanager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
    String macAddress = wimanager.getConnectionInfo().getMacAddress();
    if (macAddress == null) {
        macAddress = "Device don't have mac address or wi-fi is disabled";
    }
    return macAddress;
}

tem outros aqui


Vai macAddressser sempre null?
Max Heiber

qual parâmetro precisa passar como contexto durante a chamada de função?
Donal

@Donal, você quer dizer o Context context? se sim, qualquer contexto deve funcionar. developer.android.com/reference/android/content/…
ademar111190

11

Eu fundei essa solução em http://robinhenniges.com/en/android6-get-mac-address-programmatically e está funcionando para mim! Espero que ajude!

public static String getMacAddr() {
    try {
        List<NetworkInterface> all = Collections.list(NetworkInterface.getNetworkInterfaces());
        for (NetworkInterface nif : all) {
            if (!nif.getName().equalsIgnoreCase("wlan0")) continue;

            byte[] macBytes = nif.getHardwareAddress();
            if (macBytes == null) {
                return "";
            }

            StringBuilder res1 = new StringBuilder();
            for (byte b : macBytes) {
                String hex = Integer.toHexString(b & 0xFF);
                if (hex.length() == 1)
                    hex = "0".concat(hex);
                res1.append(hex.concat(":"));
            }

            if (res1.length() > 0) {
                res1.deleteCharAt(res1.length() - 1);
            }
            return res1.toString();
        }
    } catch (Exception ex) {
    }
    return "";
}

Suponho que seja porque precisamos remover o último caractere “:”. Este código tem 2 anos e provavelmente não é a melhor maneira de fazer isso, você deve otimizá-lo
Tiziano Bruschetta

7

Está trabalhando com Marshmallow

package com.keshav.fetchmacaddress;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;
import java.util.Collections;
import java.util.List;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Log.e("keshav","getMacAddr -> " +getMacAddr());
    }

    public static String getMacAddr() {
        try {
            List<NetworkInterface> all = Collections.list(NetworkInterface.getNetworkInterfaces());
            for (NetworkInterface nif : all) {
                if (!nif.getName().equalsIgnoreCase("wlan0")) continue;

                byte[] macBytes = nif.getHardwareAddress();
                if (macBytes == null) {
                    return "";
                }

                StringBuilder res1 = new StringBuilder();
                for (byte b : macBytes) {
                    res1.append(Integer.toHexString(b & 0xFF) + ":");
                }

                if (res1.length() > 0) {
                    res1.deleteCharAt(res1.length() - 1);
                }
                return res1.toString();
            }
        } catch (Exception ex) {
            //handle exception
        }
        return "";
    }
}

Obrigado Qadir Hussain
Keshav Gera

3

Você pode obter o endereço mac:

WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo wInfo = wifiManager.getConnectionInfo();
String mac = wInfo.getMacAddress();

Definir permissão em Menifest.xml

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>

A questão é sobre como obter mac do dispositivo Android, não do roteador wi-fi
hina abbasi

3

Você não pode mais obter o endereço MAC de hardware de um dispositivo Android. Os métodos WifiInfo.getMacAddress () e BluetoothAdapter.getAddress () retornarão 02: 00: 00: 00: 00: 00. Essa restrição foi introduzida no Android 6.0.

Mas Rob Anderson encontrou uma solução que está funcionando para <Marshmallow: https://stackoverflow.com/a/35830358


2

Retirado das fontes Android aqui . Este é o código real que mostra seu ENDEREÇO ​​MAC no aplicativo de configurações do sistema.

private void refreshWifiInfo() {
    WifiInfo wifiInfo = mWifiManager.getConnectionInfo();

    Preference wifiMacAddressPref = findPreference(KEY_MAC_ADDRESS);
    String macAddress = wifiInfo == null ? null : wifiInfo.getMacAddress();
    wifiMacAddressPref.setSummary(!TextUtils.isEmpty(macAddress) ? macAddress
            : getActivity().getString(R.string.status_unavailable));

    Preference wifiIpAddressPref = findPreference(KEY_CURRENT_IP_ADDRESS);
    String ipAddress = Utils.getWifiIpAddresses(getActivity());
    wifiIpAddressPref.setSummary(ipAddress == null ?
            getActivity().getString(R.string.status_unavailable) : ipAddress);
}

como devo acessar isso em uma classe ou fragmento sem atividade?
Hunt

Você precisará de um contexto para obter um WifiManager(isto é WifiManager mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);).
fernandohur

5
se tentar este código, estou recebendo o 02:00:00:00:00:00endereço mac, não o wi-fi mac id real
Hunt

2

Usando este método simples

WifiManager wm = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);
            String WLANMAC = wm.getConnectionInfo().getMacAddress();

0

Eu sei que esta é uma questão muito antiga, mas existe mais um método para fazer isso. O código abaixo compila, mas eu não tentei. Você pode escrever algum código C e usar JNI (Java Native Interface) para obter o endereço MAC. Aqui está o exemplo de código de atividade principal:

package com.example.getmymac;

import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;

import androidx.appcompat.app.AppCompatActivity;

public class GetMyMacActivity extends AppCompatActivity {
    static { // here we are importing native library.
        // name of the library is libnet-utils.so, in cmake and java code
        // we just use name "net-utils".
        System.loadLibrary("net-utils");
    }

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_screen);

        // some debug text and a TextView.
        Log.d(NetUtilsActivity.class.getSimpleName(), "Starting app...");
        TextView text = findViewById(R.id.sample_text);

        // the get_mac_addr native function, implemented in C code.
        byte[] macArr = get_mac_addr(null);
        // since it is a byte array, we format it and convert to string.
        String val = String.format("%02x:%02x:%02x:%02x:%02x:%02x",
                macArr[0], macArr[1], macArr[2],
                macArr[3], macArr[4], macArr[5]);
        // print it to log and TextView.
        Log.d(NetUtilsActivity.class.getSimpleName(), val);
        text.setText(val);
    }

    // here is the prototype of the native function.
    // use native keyword to indicate it is a native function,
    // implemented in C code.
    private native byte[] get_mac_addr(String interface_name);
}

E o arquivo de layout, main_screen.xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/sample_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

Arquivo de manifesto, eu não sabia quais permissões adicionar, então adicionei algumas.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.getmymac">

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".GetMyMacActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>
</manifest>

Implementação C da função get_mac_addr.

/* length of array that MAC address is stored. */
#define MAC_ARR_LEN 6

#define BUF_SIZE 256

#include <jni.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <unistd.h>

#define ERROR_IOCTL 1
#define ERROR_SOCKT 2

static jboolean
cstr_eq_jstr(JNIEnv *env, const char *cstr, jstring jstr) {
    /* see [this](https://stackoverflow.com/a/38204842) */

    jstring cstr_as_jstr = (*env)->NewStringUTF(env, cstr);
    jclass cls = (*env)->GetObjectClass(env, jstr);
    jmethodID method_id = (*env)->GetMethodID(env, cls, "equals", "(Ljava/lang/Object;)Z");
    jboolean equal = (*env)->CallBooleanMethod(env, jstr, method_id, cstr_as_jstr);
    return equal;
}

static void
get_mac_by_ifname(jchar *ifname, JNIEnv *env, jbyteArray arr, int *error) {
    /* see [this](https://stackoverflow.com/a/1779758) */

    struct ifreq ir;
    struct ifconf ic;
    char buf[BUF_SIZE];
    int ret = 0, sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);

    if (sock == -1) {
        *error = ERROR_SOCKT;
        return;
    }

    ic.ifc_len = BUF_SIZE;
    ic.ifc_buf = buf;

    ret = ioctl(sock, SIOCGIFCONF, &ic);
    if (ret) {
        *error = ERROR_IOCTL;
        goto err_cleanup;
    }

    struct ifreq *it = ic.ifc_req; /* iterator */
    struct ifreq *end = it + (ic.ifc_len / sizeof(struct ifreq));

    int found = 0; /* found interface named `ifname' */

    /* while we find an interface named `ifname' or arrive end */
    while (it < end && found == 0) {
        strcpy(ir.ifr_name, it->ifr_name);
        ret = ioctl(sock, SIOCGIFFLAGS, &ir);
        if (ret == 0) {
            if (!(ir.ifr_flags & IFF_LOOPBACK)) {
                ret = ioctl(sock, SIOCGIFHWADDR, &ir);
                if (ret) {
                    *error = ERROR_IOCTL;
                    goto err_cleanup;
                }

                if (ifname != NULL) {
                    if (cstr_eq_jstr(env, ir.ifr_name, ifname)) {
                        found = 1;
                    }
                }
            }
        } else {
            *error = ERROR_IOCTL;
            goto err_cleanup;
        }
        ++it;
    }

    /* copy the MAC address to byte array */
    (*env)->SetByteArrayRegion(env, arr, 0, 6, ir.ifr_hwaddr.sa_data);
    /* cleanup, close the socket connection */
    err_cleanup: close(sock);
}

JNIEXPORT jbyteArray JNICALL
Java_com_example_getmymac_GetMyMacActivity_get_1mac_1addr(JNIEnv *env, jobject thiz,
                                                          jstring interface_name) {
    /* first, allocate space for the MAC address. */
    jbyteArray mac_addr = (*env)->NewByteArray(env, MAC_ARR_LEN);
    int error = 0;

    /* then just call `get_mac_by_ifname' function */
    get_mac_by_ifname(interface_name, env, mac_addr, &error);

    return mac_addr;
}

E, finalmente, o arquivo CMakeLists.txt

cmake_minimum_required(VERSION 3.4.1)
add_library(net-utils SHARED src/main/cpp/net-utils.c)
target_link_libraries(net-utils android log)


-3

Acho que acabei de encontrar uma maneira de ler endereços MAC sem permissão de LOCATION: Executar ip linke analisar sua saída. (você provavelmente poderia fazer o mesmo olhando para o código-fonte deste binário)

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.