Android gets the most reliable method for Mac addresses.

Source: Internet
Author: User

It is well known that in the development of Android, we often use Wifimanager to get MAC address to do device mapping, but there will be such problems, such as open WiFi access to address, do not open WiFi access address, just boot not get address, The NIC does not start to get the address. In summary the most reliable method or directly with BusyBox read the system file MAC address is more secure.

   public string getmacaddress ()  {         String result =  "";         string mac =   "";         result = callcmd ("Busybox ifconfig",   "HWaddr");        if  (result == null)  {             return  "Network error, please check network";         }        if  (Result.length ()  > 0 && result.contains ("HWaddr"))  {             mac = result.substring (Result.indexof ("HWaddr")  + 6,  result.length ()  - 1);             if  (Mac.length ()  > 1)  {                 result = mac.tolowercase ();             }        }        return  result.trim ();     }

Android gets the most reliable method for Mac addresses.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.