当前位置: 首页 > 编程笔记 >

java编程实现获取服务器IP地址及MAC地址的方法

穆浩皛
2023-03-14
本文向大家介绍java编程实现获取服务器IP地址及MAC地址的方法,包括了java编程实现获取服务器IP地址及MAC地址的方法的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了java编程实现获取服务器IP地址及MAC地址的方法。分享给大家供大家参考,具体如下:

已测系统:
windows linux unix

排除127.0.0.1 和 0.0.0.0.1等非正常IP

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
public class IpUtil {
 private IpUtil(){}
 /**
  * 此方法描述的是:获得服务器的IP地址
  * @author: zhangyang33@sinopharm.com
  * @version: 2014年9月5日 下午4:57:15
  */
 public static String getLocalIP() {
  String sIP = "";
  InetAddress ip = null;
  try {
   boolean bFindIP = false;
   Enumeration<NetworkInterface> netInterfaces = (Enumeration<NetworkInterface>) NetworkInterface
     .getNetworkInterfaces();
   while (netInterfaces.hasMoreElements()) {
    if (bFindIP) {
     break;
    }
    NetworkInterface ni = (NetworkInterface) netInterfaces
      .nextElement();
    Enumeration<InetAddress> ips = ni.getInetAddresses();
    while (ips.hasMoreElements()) {
     ip = (InetAddress) ips.nextElement();
     if (!ip.isLoopbackAddress() 
       && ip.getHostAddress().matches(
         "(\\d{1,3}\\.){3}\\d{1,3}")) {
      bFindIP = true;
      break;
     }
    }
   }
  } catch (Exception e) {
   OutUtil.error(IpUtil.class, e.getMessage());
  }
  if (null != ip) {
   sIP = ip.getHostAddress();
  }
  return sIP;
 }
 /**
  * 此方法描述的是:获得服务器的IP地址(多网卡)
  * @author: zhangyang33@sinopharm.com
  * @version: 2014年9月5日 下午4:57:15
  */
 public static List<String> getLocalIPS() {
  InetAddress ip = null;
  List<String> ipList = new ArrayList<String>();
  try {
   Enumeration<NetworkInterface> netInterfaces = (Enumeration<NetworkInterface>) NetworkInterface
     .getNetworkInterfaces();
   while (netInterfaces.hasMoreElements()) {
    NetworkInterface ni = (NetworkInterface) netInterfaces
      .nextElement();
    Enumeration<InetAddress> ips = ni.getInetAddresses();
    while (ips.hasMoreElements()) {
     ip = (InetAddress) ips.nextElement();
     if (!ip.isLoopbackAddress() 
       && ip.getHostAddress().matches(
         "(\\d{1,3}\\.){3}\\d{1,3}")) {
      ipList.add(ip.getHostAddress());
     }
    }
   }
  } catch (Exception e) {
   OutUtil.error(IpUtil.class, e.getMessage());
  }
  return ipList;
 }
 /**
  * 此方法描述的是:获得服务器的MAC地址
  * @author: zhangyang33@sinopharm.com
  * @version: 2014年9月5日 下午1:27:25
  */
 public static String getMacId() {
  String macId = "";
  InetAddress ip = null;
  NetworkInterface ni = null;
  try {
   boolean bFindIP = false;
   Enumeration<NetworkInterface> netInterfaces = (Enumeration<NetworkInterface>) NetworkInterface
     .getNetworkInterfaces();
   while (netInterfaces.hasMoreElements()) {
    if (bFindIP) {
     break;
    }
    ni = (NetworkInterface) netInterfaces
      .nextElement();
    // ----------特定情况,可以考虑用ni.getName判断
    // 遍历所有ip
    Enumeration<InetAddress> ips = ni.getInetAddresses();
    while (ips.hasMoreElements()) {
     ip = (InetAddress) ips.nextElement();
     if (!ip.isLoopbackAddress() // 非127.0.0.1
       && ip.getHostAddress().matches(
         "(\\d{1,3}\\.){3}\\d{1,3}")) {
      bFindIP = true;
      break;
     }
    }
   }
  } catch (Exception e) {
   OutUtil.error(IpUtil.class, e.getMessage());
  }
  if (null != ip) {
   try {
    macId = getMacFromBytes(ni.getHardwareAddress());
   } catch (SocketException e) {
    OutUtil.error(IpUtil.class, e.getMessage());
   }
  }
  return macId;
 }
 /**
  * 此方法描述的是:获得服务器的MAC地址(多网卡)
  * @author: zhangyang33@sinopharm.com
  * @version: 2014年9月5日 下午1:27:25
  */
 public static List<String> getMacIds() {
  InetAddress ip = null;
  NetworkInterface ni = null;
  List<String> macList = new ArrayList<String>();
  try {
   Enumeration<NetworkInterface> netInterfaces = (Enumeration<NetworkInterface>) NetworkInterface
     .getNetworkInterfaces();
   while (netInterfaces.hasMoreElements()) {
    ni = (NetworkInterface) netInterfaces
      .nextElement();
    // ----------特定情况,可以考虑用ni.getName判断
    // 遍历所有ip
    Enumeration<InetAddress> ips = ni.getInetAddresses();
    while (ips.hasMoreElements()) {
     ip = (InetAddress) ips.nextElement();
     if (!ip.isLoopbackAddress() // 非127.0.0.1
       && ip.getHostAddress().matches(
         "(\\d{1,3}\\.){3}\\d{1,3}")) {
      macList.add(getMacFromBytes(ni.getHardwareAddress()));
     }
    }
   }
  } catch (Exception e) {
   OutUtil.error(IpUtil.class, e.getMessage());
  }
  return macList;
 }
 private static String getMacFromBytes(byte[] bytes) {
  StringBuffer mac = new StringBuffer();
  byte currentByte;
  boolean first = false;
  for (byte b : bytes) {
   if (first) {
    mac.append("-");
   }
   currentByte = (byte) ((b & 240) >> 4);
   mac.append(Integer.toHexString(currentByte));
   currentByte = (byte) (b & 15);
   mac.append(Integer.toHexString(currentByte));
   first = true;
  }
  return mac.toString().toUpperCase();
 }
}

希望本文所述对大家Java程序设计有所帮助。

 类似资料:
  • 本文向大家介绍android 获取本机的IP地址和mac物理地址的实现方法,包括了android 获取本机的IP地址和mac物理地址的实现方法的使用技巧和注意事项,需要的朋友参考一下 获取本机IP地址 获取本机的物理地址 以上就是Android 获取手机 IP和MAC地址的方法,希望能帮助到读者,谢谢大家对本站的支持!

  • 本文向大家介绍Android 获取IP地址的实现方法,包括了Android 获取IP地址的实现方法的使用技巧和注意事项,需要的朋友参考一下 Android 获取IP地址 最近做项目,有一个需求是Android设备获取当前IP的功能,经过一番查询资料解决了,记录下实现方法。 1.使用WIFI 首先设置用户权限 其次,代码如下 2.使用GPRS 首先,设置用户上网权限 <uses-permission

  • 本文向大家介绍C#实现获取MAC地址的方法,包括了C#实现获取MAC地址的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#实现获取MAC地址的方法,是一个非常常见而且实用的功能,具体方法如下: 主要功能代码如下: 有些项目中出于安全考虑需要获取MAC地址,然后再判断MAC地址是否合法才可以登陆。本文总结的方法希望对大家有所帮助!

  • 本文向大家介绍java实现获取用户的MAC地址,包括了java实现获取用户的MAC地址的使用技巧和注意事项,需要的朋友参考一下 方法一:将本机地址与局域网内其他机器区分开来 我们再来看下方法二: 方法三,更精简一些 最后要放大招了,小伙伴们看仔细哦 首先要说的是:本方法可以支持外网机器的mac地址获取。  以前弄了一个只能访问局域网。 有防火墙就访问不了, 但是这个不用担心了。 测试了百度的ip,

  • 问题内容: 我需要一种跨平台的方法来在运行时确定计算机的MAC地址。对于Windows,可以使用“ wmi”模块,在Linux下,我能找到的唯一方法是运行ifconfig并在其输出中运行正则表达式。我不喜欢使用只能在一个OS上运行的程序包,而且更不用说容易出错的语法解析另一个程序的输出。 有谁知道跨平台方法(Windows和Linux)方法来获取MAC地址?如果没有,还有谁比我上面列出的方法更优雅

  • 问题内容: 我正在尝试使用Java获取我的Internet IP地址,但是当我的IP地址为192.168.0.xxx时,我一直在获取本地地址(即:127.0.0.1) 我正在使用该行: 这似乎是获取IP地址的标准方法,但这不是我想要的。每个教程都说要使用此行,所以我有些困惑。 有人可以让我知道如何获取正确的IP地址吗? 我在连接到WiFi的设备上运行,但未使用任何电缆。我正在使用ifconfig