unity基礎開發----Unity擷取PC,Ios系統的mac地址等資訊

來源:互聯網
上載者:User

標籤:cad   ret   nic   else   using   軟體   安卓   tar   nice   

在軟體開發中可以會用到mac地址作為,裝置的唯一標示,我們也可以通過unity擷取,經測試pc,ios都可以但是安卓沒有擷取到。

代碼如下:

using UnityEngine;using System.Collections;using System.Net.NetworkInformation;public class NetWorkInfo : MonoBehaviour{    void Start()    {        Debug.Log(GetMacAddress());    }    public static string GetMacAddress()    {        string physicalAddress = "";        NetworkInterface[] nice = NetworkInterface.GetAllNetworkInterfaces();        foreach (NetworkInterface adaper in nice)        {            Debug.Log(adaper.Description);            if (adaper.Description == "en0")            {                physicalAddress = adaper.GetPhysicalAddress().ToString();                break;            }            else            {                physicalAddress = adaper.GetPhysicalAddress().ToString();                if (physicalAddress != "")                {                    break;                };            }        }        return physicalAddress;    }
void OnGUI() { GUI.Label(new Rect(0, 0, 200, 100), "MAC=" + GetMacAddress()); }}

補充說明:

using UnityEngine;using System.Collections;using System.Net.NetworkInformation;public class Test : MonoBehaviour {    void Start() {        NetworkInterface[] nis = NetworkInterface.GetAllNetworkInterfaces();        foreach (NetworkInterface ni in nis) {            Debug.Log ("Name = " + ni.Name);            Debug.Log ("Des = " + ni.Description);            Debug.Log ("Type = " + ni.NetworkInterfaceType.ToString() );            Debug.Log ("Mac地址 = " + ni.GetPhysicalAddress().ToString() );            Debug.Log ("------------------------------------------------");        }    }}

 

unity基礎開發----Unity擷取PC,Ios系統的mac地址等資訊

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.