Java获取本机ip地址

在做项目过程中,我们有时候会需要获取部署服务的本机机器地址。我们可以直接用jdk自带的方法来获取ip地址,但是一定要注意,这个方法执行会比较慢,不要频繁调用。具体代码如下:

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

public class IpUtils {

    /**
     * 这个方法比较重,建议不要频繁调用
     * @return
     * @throws SocketException
     */
    public static String getLocalIp() throws SocketException {
        // 根据网卡取本机配置的IP
        Enumeration netInterfaces = NetworkInterface.getNetworkInterfaces();
        String ip = null;
        while (netInterfaces.hasMoreElements()) {
            NetworkInterface ni = netInterfaces.nextElement();
            Enumeration ips = ni.getInetAddresses();
            while (ips.hasMoreElements()) {
                InetAddress ipObj = ips.nextElement();
                if (ipObj.isSiteLocalAddress()) {
                    ip = ipObj.getHostAddress();
                    break;
                }
            }
        }
        return ip;
    }

    public static void main(String args[]) throws SocketException {
        System.out.println(getLocalIp());
    }
}

跑单测看一下,可以正常输出本机的ip地址。

你可能感兴趣的:(服务器,运维)