Atul Palandurkar

Posts Tagged ‘Source code for Java

Free Source Code

Free Source Code

Objective :

* How to get the MAC Address of a computer?
* How to get the MAC Address of a computer using Java?
* How to get the MAC Address of a computer via programming?

import java.net.*;

class GetMac
{
public static void main(String arg[])
{
try
{
InetAddress address = InetAddress.getLocalHost();
NetworkInterface nwi = NetworkInterface.getByInetAddress(address);
byte mac[] = nwi.getHardwareAddress();
System.out.println(mac);
}
catch(Exception e)
{
System.out.println(e);
}
}
}

Note : This code will return only the first net address; if you need other detils too, get a list.

Posted from WordPress for Android

About these ads

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 420 other followers

Tweets

Follow

Get every new post delivered to your Inbox.

Join 420 other followers

%d bloggers like this: