All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bt.service.NetworkUtil Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.service;

import bt.BtException;

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.Enumeration;

/**
 * Provides useful network functions.
 *
 * @since 1.0
 */
public class NetworkUtil {

    /**
     * Get address for a local internet link.
     *
     * @since 1.0
     */
    public static InetAddress getInetAddressFromNetworkInterfaces() {
        try {
            Enumeration networkInterfaces = NetworkInterface.getNetworkInterfaces();
            while (networkInterfaces.hasMoreElements()) {
                NetworkInterface networkInterface = networkInterfaces.nextElement();
                Enumeration inetAddresses = networkInterface.getInetAddresses();
                while (inetAddresses.hasMoreElements()) {
                    InetAddress inetAddress = inetAddresses.nextElement();
                    if (!inetAddress.isMulticastAddress() && !inetAddress.isLoopbackAddress()
                            && inetAddress.getAddress().length == 4) {
                        return inetAddress;
                    }
                }
            }

        } catch (SocketException e) {
            throw new BtException("Failed to retrieve network address", e);
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy