Android acquisition of the IP address and Mac physical address of the computer _android

Source: Internet
Author: User

Get native IP address

Public String getlocalipaddress () {

 

Wifimanager Wifimanager = (wifimanager) getsystemservice ( Android.content.Context.WIFI_SERVICE);
Wifiinfo wifiinfo = Wifimanager.getconnectioninfo ();
int ipaddress = wifiinfo.getipaddress ();
try {return
inetaddress.getbyname (String.Format ("%d.%d.%d.%d"
), (IPAddress & 0xFF), (IPAddress >> 8 & 0xFF),
(IPAddress >> & 0xFF), (IPAddress >> & 0xFF)). toString ();
catch (Unknownhostexception e) {
//TODO auto-generated catch block
e.printstacktrace ();
}
return null;
}

Get Physical address for this machine

Public String getlocalmacaddress () {
Wifimanager WiFi = (wifimanager) getsystemservice (context.wifi_service);
Wifiinfo info = wifi.getconnectioninfo ();
return info.getmacaddress ();
}





The above is Android access to mobile phone IP and MAC address method, I hope to help readers, thank you for your support for this site!

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.