Java 네이티브 IP 및 MAC 주소 세부 정보 가져오기

Java에서 네이티브 IP 및 MAC 주소 가져오기
일부 시스템에는 가상 네트워크 카드가 많기 때문에 IP 주소를 가져올 때 의외의 문제가 발생할 수 있으므로 검증이 필요합니다.

//  mac 
  public static String getMacAddress() {
    try {
      Enumeration<NetworkInterface> allNetInterfaces = NetworkInterface.getNetworkInterfaces();
      byte[] mac = null;
      while (allNetInterfaces.hasMoreElements()) {
        NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement();
        if (netInterface.isLoopback() || netInterface.isVirtual() || !netInterface.isUp()) {
          continue;
        } else {
          mac = netInterface.getHardwareAddress();
          if (mac != null) {
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < mac.length; i++) {
              sb.append(String.format("%02X%s", mac[i], (i < mac.length - 1) ? "-" : ""));
            }
            if (sb.length() > 0) {
              return sb.toString();
            }
          }
        }
      }
    } catch (Exception e) {
      _logger.error("MAC ", e);
    }
    return "";
  }

  //  ip 
  public static String getIpAddress() {
    try {
      Enumeration<NetworkInterface> allNetInterfaces = NetworkInterface.getNetworkInterfaces();
      InetAddress ip = null;
      while (allNetInterfaces.hasMoreElements()) {
        NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement();
        if (netInterface.isLoopback() || netInterface.isVirtual() || !netInterface.isUp()) {
          continue;
        } else {
          Enumeration<InetAddress> addresses = netInterface.getInetAddresses();
          while (addresses.hasMoreElements()) {
            ip = addresses.nextElement();
            if (ip != null && ip instanceof Inet4Address) {
              return ip.getHostAddress();
            }
          }
        }
      }
    } catch (Exception e) {
      _logger.error("IP ", e);
    }
    return "";
  }
이상의 코드 중
netInterface.isLoopback() || netInterface.isVirtual() || !netInterface.isUp()
비물리적 카드나 쓸모없는 인터넷을 잘 필터링한 다음 인터넷의 IPV4 주소를 찾으면 된다.
여기까지 말하자면 또 몇 가지 자주 사용하는 것이 있다.
1. 현재 기계의 운영체제 가져오기

 public final static String WIN_OS = "WINDOWS";
  public final static String MAC_OS = "MAC";
  public final static String LINUX_OS = "LINUX";
  public final static String OTHER_OS = "OTHER";

  public static String getOS() {
    if (SystemUtils.IS_OS_WINDOWS){
      return WIN_OS;
    }
    if (SystemUtils.IS_OS_MAC || SystemUtils.IS_OS_MAC_OSX){
      return MAC_OS;
    }
    if (SystemUtils.IS_OS_UNIX){
      return LINUX_OS;
    }
    return OTHER_OS;
  }

2. HTTP 액세스 에이전트 설정

/**
   *  http 
   */
  public static void setHttpProxy() {
    Properties prop = System.getProperties();
    //  http 
    prop.setProperty("http.proxyHost", HTTP_PROXY_HOST);
    //  http 
    prop.setProperty("http.proxyPort", HTTP_PROXY_PORT);
    //  , * , | 
    prop.setProperty("http.nonProxyHosts", RemoteConfig.PROXT_FILTER_DOMAIN);
  }
  
  /**
   *  http 
   */
  public static void removeHttpProxy() {
    Properties prop = System.getProperties();
    prop.remove("http.proxyHost");
    prop.remove("http.proxyPort");
    prop.remove("http.nonProxyHosts");
  }
애플리케이션 시작 시 HTTP 요청에 액세스하기 전에 설정하면 됩니다.물론nonProxyHosts는 설정 없이 모든 HTTP 요청이 프록시됨을 나타냅니다.
HTTPS 에이전트의 경우 다음과 같이 설정할 수 있습니다.
System.setProperty("https.proxyHost", "HTTP_PROXY_HOST");
System.setProperty("https.proxyPort", "HTTP_PROXY_PORT");
이상은 Java가 본 컴퓨터의 IP와 MAC를 획득한 실례입니다. 필요한 친구가 참고할 수 있습니다. 본 사이트에 대한 지지에 감사드립니다!

좋은 웹페이지 즐겨찾기