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

cn.acyou.leo.framework.util.NetworkUtil Maven / Gradle / Ivy

There is a newer version: 1.6.0.RELEASE
Show newest version
package cn.acyou.leo.framework.util;

import java.io.IOException;
import java.net.InetAddress;

/**
 * @author youfang
 * @version [1.0.0, 2020/12/29]
 **/
public class NetworkUtil {

    /**
     * IP 可达
     *
     * @param ip 知识产权
     * @return boolean
     */
    public static boolean isReachable(String ip){
        int timeOut = 1000;
        try {
            return InetAddress.getByName(ip).isReachable(timeOut);
        } catch (IOException e) {
            e.printStackTrace();
            return false;
        }
    }
    /**
     * IP 不可达
     *
     * @param ip 知识产权
     * @return boolean
     */
    public static boolean notReachable(String ip){
        return !isReachable(ip);
    }

    public static void main(String[] args) {
        System.out.println(isReachable("192.168.1.120"));
        System.out.println(isReachable("192.168.12.120"));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy