การรับ MAC ของอุปกรณ์ Android โดยทางโปรแกรม


93

ฉันต้องการรับที่อยู่ MAC ของอุปกรณ์ Android ของฉันโดยใช้ Java ฉันค้นหาทางออนไลน์ แต่ไม่พบสิ่งที่เป็นประโยชน์





โปรดตรวจสอบวิธีนี้ใช้งานได้กับฉันstackoverflow.com/questions/31329733/…
Gorio

จาก android M api นี้เลิกใช้แล้วให้ใช้ตอนนี้: stackoverflow.com/questions/31329733/…
Ehud

คำตอบ:


115

ตามที่ได้เกริ่นไปแล้วในความคิดเห็นที่อยู่ MAC สามารถรับได้ผ่านทางWifiManager

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

อย่าลืมเพิ่มสิทธิ์ที่เหมาะสมลงในไฟล์ AndroidManifest.xml

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

โปรดดูที่เป็น Android 6.0 การเปลี่ยนแปลง

เพื่อให้ผู้ใช้ได้รับการปกป้องข้อมูลที่ดียิ่งขึ้นโดยเริ่มในรุ่นนี้ Android จะลบการเข้าถึงแบบเป็นโปรแกรมไปยังตัวระบุฮาร์ดแวร์ในเครื่องของอุปกรณ์สำหรับแอปโดยใช้ Wi-Fi และ Bluetooth API ตอนนี้วิธี WifiInfo.getMacAddress () และ BluetoothAdapter.getAddress () คืนค่าคงที่เป็น 02: 00: 00: 00: 00: 00

ในการเข้าถึงตัวระบุฮาร์ดแวร์ของอุปกรณ์ภายนอกที่อยู่ใกล้เคียงผ่านการสแกนบลูทู ธ และ Wi-Fi ขณะนี้แอปของคุณต้องมีสิทธิ์ ACCESS_FINE_LOCATION หรือ ACCESS_COARSE_LOCATION


11
นอกจากนี้ยังเป็นเพียงบันทึกบางครั้งที่อยู่ mac ไม่สามารถดึงได้เนื่องจาก wifi บนอุปกรณ์ปิดอยู่
sbrichards

3
บล็อกที่เชื่อมโยงยังอธิบายวิธีค้นหาที่อยู่ MAC นี้ด้วยวิธีทั่วไปที่ไม่ถือว่าอินเทอร์เฟซเครือข่ายใช้การเชื่อมต่อ WiFi
Stephen C

อย่าลืมใช้บริบทเพื่อเรียกใช้ getSystemService
Tito Leiva

สิ่งนี้ยอดเยี่ยมสำหรับโทรศัพท์และแท็บเล็ต Android ที่ใช้ Wifi แต่ฉันกำลังพยายามรับที่อยู่ MAC ของอีเทอร์เน็ตบนแท็บเล็ต Gingerbread Android รุ่นเก่าที่ใช้ Wifi หรือ Ethernet ได้ มีความคิดเห็นเกี่ยวกับวิธีตรวจสอบที่อยู่ MAC ของ Ethernet หรือไม่? ขอบคุณ.
Seth

@sbrichards การปิด WiFi หมายความว่าอย่างไร
peterchaula

34

รับที่อยู่ MAC ผ่าน WifiInfo.getMacAddress()จะไม่ทำงานในขนมหวานและเหนือจะได้รับการปิดใช้งานและจะกลับค่าคงที่ของ02:00:00:00:00:00


3
ทางเลือกอื่นคืออะไร?
แซม

2
@SameerThigale ขึ้นอยู่กับสิ่งที่คุณพยายามบรรลุ แนวคิดเบื้องหลังคือคุณไม่ควรพยายามรับที่อยู่ MAC
minipif

ฉันไม่แน่ใจว่าทำไม แต่ฉันไม่พบโน้ตที่เลิกใช้งานแล้วใน api doc ที่เชื่อมโยง บางทีพวกเขาอาจเปลี่ยนใจเกี่ยวกับเรื่องนี้?
DBX12

1
@ DBX12 วิธีนี้ไม่ได้ถูกทำเครื่องหมายว่าเลิกใช้งานแม้ว่าจะไม่มีการบันทึกไว้ก็ตาม ลิงก์ที่สองชี้ไปยังบันทึกอย่างเป็นทางการเกี่ยวกับเรื่องนี้
minipif

26
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
มันแสดงให้ฉันเห็น "02: 00: 00: 00: 00: 00" บน Android 7.1
นักพัฒนา Android

ต้องทดสอบบนอุปกรณ์จริงมากกว่าโปรแกรมจำลองหรืออุปกรณ์เสมือน
pm dubey

1
มันยังใช้งานได้อย่าลืมให้สิทธิ์อินเทอร์เน็ตในไฟล์ Manifest
pm dubey

2
ไม่สามารถใช้งานได้บน Android marshmallow ขึ้นไปเนื่องจากจะคืนค่าเป็น "02: 00: 00: 00: 00: 00"
SweArmy

1
มันได้ผล. ฉันใช้รหัสนี้มานานมาก ยังคงใช้งานได้บน Android Q
Rupam Das

14

ฉันก่อตั้งโซลูชันนี้จากhttp://robinhenniges.com/en/android6-get-mac-address-programmaticallyและมันใช้ได้ผลสำหรับฉัน! หวังช่วย!

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 "";
}

ฉันคิดว่าเป็นเพราะเราจำเป็นต้องลบอักขระ“:” ตัวสุดท้าย รหัสนี้มีอายุ 2 ปีและอาจไม่ใช่วิธีที่ดีที่สุดในการทำเช่นนั้นคุณควรเพิ่มประสิทธิภาพ
Tiziano Bruschetta

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;
}

มีทางอื่นที่นี่


จะmacAddressเคยnullไหม?
Max Heiber

พารามิเตอร์ใดที่ต้องส่งเป็นบริบทในขณะที่เรียกฟังก์ชัน
Donal

@Donal คุณหมายถึงContext context? ถ้าใช่บริบทใด ๆ ควรใช้งานได้ developer.android.com/reference/android/content/…
ademar111190

8

มันทำงานร่วมกับ 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 "";
    }
}

ขอบคุณ Qadir Hussain
Keshav Gera

4

คุณไม่สามารถรับที่อยู่ MAC ของฮาร์ดแวร์ของอุปกรณ์ Android ได้อีกต่อไป WifiInfo.getMacAddress () และ BluetoothAdapter.getAddress () วิธีการจะคืนค่า 02: 00: 00: 00: 00: 00 ข้อ จำกัด นี้ถูกนำมาใช้ใน Android 6.0

แต่ Rob Anderson พบวิธีแก้ปัญหาที่ใช้ได้กับ <Marshmallow: https://stackoverflow.com/a/35830358


3

คุณจะได้รับที่อยู่ mac:

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

ตั้งค่าการอนุญาตใน Menifest.xml

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

คำถามเกี่ยวกับการรับ mac ของอุปกรณ์ android ไม่ใช่ของเราเตอร์ wifi
hina abbasi


2

นำมาจากแหล่งที่มาของ Android ที่นี่ นี่คือรหัสจริงที่แสดง MAC ADDRESS ของคุณในแอปการตั้งค่าของระบบ

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);
}

ฉันจะเข้าถึงสิ่งนี้ในคลาสหรือส่วนที่ไม่ใช่กิจกรรมได้อย่างไร
ล่า

คุณจะต้องมีบริบทเพื่อรับWifiManager(เช่นWifiManager mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);)
fernandohur

5
ถ้าลองใช้รหัสนี้ฉันได้รับที่02:00:00:00:00:00อยู่ mac ไม่ใช่รหัส mac wifi จริง
ล่า

0

ฉันรู้ว่านี่เป็นคำถามเก่ามาก แต่มีอีกหนึ่งวิธีในการทำเช่นนี้ ด้านล่างโค้ดคอมไพล์ แต่ฉันยังไม่ได้ลอง คุณสามารถเขียนโค้ด C และใช้ JNI (Java Native Interface) เพื่อรับที่อยู่ MAC นี่คือตัวอย่างรหัสกิจกรรมหลัก:

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);
}

และไฟล์เลย์เอาต์ 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>

ไฟล์ Manifest ฉันไม่รู้ว่าจะเพิ่มสิทธิ์อะไรได้บ้างดังนั้นฉันจึงเพิ่มไฟล์.

<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>

C ใช้ฟังก์ชัน 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;
}

และสุดท้ายไฟล์ 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

ฉันคิดว่าฉันเพิ่งค้นพบวิธีอ่านที่อยู่ MAC โดยไม่ได้รับอนุญาตจาก LOCATION: เรียกใช้ip linkและแยกวิเคราะห์ผลลัพธ์ (คุณอาจทำได้โดยดูที่ซอร์สโค้ดของไบนารีนี้)

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.