プログラムでAndroidデバイスのMACを取得する


91

Javaを使用してAndroidデバイスのMACアドレスを取得する必要があります。オンラインで検索しましたが、便利なものは見つかりませんでした。





この解決策を確認してください、それは私の作品はstackoverflow.com/questions/31329733/...
Gorio

このAPIは廃止されましたアンドロイドMからは、今のところこれを使用する:stackoverflow.com/questions/31329733/...
エフード

回答:


114

コメントですでに指摘したように、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の定数値を返すようになりました。

BluetoothおよびWi-Fiスキャンを介して近くの外部デバイスのハードウェア識別子にアクセスするには、アプリにACCESS_FINE_LOCATIONまたはACCESS_COARSE_LOCATION権限が必要です。


11
また、単なるメモです。デバイスでwifiがオフになっているために、
MACアドレスを取得

3
リンクされたブログでは、ネットワークインターフェイスがWiFi接続を使用することを前提としない、より一般的な方法でこのMACアドレスを見つける方法についても説明しています。
スティーブンC

コンテキストを使用してgetSystemServiceを呼び出すことを忘れないでください。
Tito Leiva、2016年

これは、Wifiを使用するAndroidフォンおよびタブレットに最適ですが、Wifiまたはイーサネットを使用できる古いジンジャーブレッドAndroidタブレットでイーサネットMACアドレスを取得しようとしています。イーサネットMACアドレスを確認する方法について何か考えはありますか?ありがとう。
Seth

@sbrichards WiFiがオフになっているとはどういう意味ですか?
peterchaula

33

MACアドレスの取得は、WifiInfo.getMacAddress()Marshmallow以降では機能しません。無効になっており、定数の値を02:00:00:00:00:00返します


3
代わりは何ですか?
Sam

2
@SameerThigale達成しようとしていることに依存します。この背後にある考えは、おそらくMACアドレスを取得しようとすべきではないということです。
minipif 2016

理由はわかりませんが、リンクされたAPIドキュメントで非推奨のメモが見つかりません。多分彼らはこれについて彼らの考えを変えましたか?
DBX12

1
@ DBX12メソッド自体は、ドキュメント化されていませんが、非推奨としてマークされていません。2番目のリンクは、それに関する公式のメモへのリンクです。
minipif 2016

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
Android 7.1で「02:00:00:00:00:00」と表示され続けます。
Android開発者

それはむしろ、エミュレータや仮想デバイスよりも、物理的なデバイス上でテストする必要があります
Dubeyさん午後

この回避策はまだ機能しますか?それともOS側でパッチを適用/修正されましたか?
CasualT

1
それはまだ機能します。マニフェストファイルでインターネットアクセス許可を与えることを忘れないでください。
pm dubey 2017

1
「02:00:00:00:00:00」の値を返すため、Androidマシュマロ以上では機能しなくなります
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;
}

ここに他の人がいる


ウィルmacAddressこれまでもnull
Max Heiber 16

関数呼び出し中にコンテキストとして渡す必要があるパラメーターはどれですか?
ドナル

@ドナルどういう意味Context context?はいの場合、どのコンテキストも機能するはずです。developer.android.com/reference/android/content/...
ademar111190

11

私はこのソリューションを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 '30

7

マシュマロとの連携

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

おかげでカディルフセイン
ケシャフゲラ

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>

質問は、wifiルーターではなく、AndroidデバイスのMacを取得することです。
hina abbasi

3

AndroidデバイスのハードウェアMACアドレスを取得できなくなりました。WifiInfo.getMacAddress()およびBluetoothAdapter.getAddress()メソッドは02:00:00:00:00:00を返します。この制限はAndroid 6.0で導入されました。

しかし、ロブアンダーソンは<マシュマロ:https : //stackoverflow.com/a/35830358で機能するソリューションを見つけました


2

こちらのAndroidソースから取得。これは、システムの設定アプリでMACアドレスを表示する実際のコードです。

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

非アクティビティクラスまたはフラグメントでこれにアクセスするにはどうすればよいですか?
2015

WifiManager(つまりWifiManager mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);)を取得するにはコンテキストが必要です。
fernandohur

5
このコードを試してみると02:00:00:00:00:00、実際のWi-Fi MAC IDではなくMACアドレスを取得しています
Hunt

2

この簡単な方法を使う

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

0

これは非常に古い質問であることは知っていますが、これを行う方法がもう1つあります。以下のコードはコンパイルされますが、試していません。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 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>

get_mac_addr関数のC実装。

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

LOCATION権限なしでMACアドレスを読み取る方法を見つけたと思いip linkます。その出力を実行して解析します。(おそらく、このバイナリのソースコードを見て、同様のことができます)

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.