java - 获取本机ip地址工具类

/**
 * 获取本机ip地址
 */
public class IpUtil {
    public static String getIpAddress() {
        try {
            return InetAddress.getLocalHost().getHostAddress();
        } catch (UnknownHostException e) {
            e.printStackTrace();
        }
        return null;
    }
}

 

posted @ 2021-01-26 16:20  快乐的张小凡  阅读(222)  评论(0编辑  收藏  举报