Report By Name : NetworkInterface « Network Protocol « Java






Report By Name

  

import java.net.NetworkInterface;

public class Main {
  static public void main(String args[]) throws Exception {
    NetworkInterface ni = NetworkInterface.getByName(args[0]);
    System.out.println(ni);
  }
}

   
    
  








Related examples in the same category

1.Programmatic Access to Network Parameters
2.An updated version of the ListNets program that uses the NetworkInterface enhancements
3.Get MAC address of a host: java.net.NetworkInterface.getHardwareAddress().
4.List Network Interfaces
5.Extract network card address with java.net.NetworkInterface
6.Class for determining a host's IP address.