You are hereBlogs / elBoB's blog / BD Networking
BD Networking
Some experiments with BD Network support.
Enumeration interfaces = NetworkInterface.getNetworkInterfaces();
while (interfaces.hasMoreElements()) {
NetworkInterface nic = interfaces.nextElement();
System.out.print("Interface Name : [" + nic.getDisplayName() + "]");
System.out.println(", Is connected : [" + nic.isUp() + "]");
}