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

网友投稿 330 2023-07-26


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 netInterfaces = (Enumeration) NetworkInterface

.getNetworkInterfaces();

while (netInterfaces.hasMoreElements()) {

if (bFindIP) {

break;

}

NetworkInterface ni = (NetworkInterface) netInterfaces

.nextElement();

Enumeration 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 getLocalIPS() {

InetAddress ip = null;

List ipList = new ArrayList();

try {

Enumeration netInterfaces = (Enumeration) NetworkInterface

.getNetworkInterfaces();

while (netInterfaces.hasMoreElements()) {

NetworkInterface ni = (NetworkInterface) netInterfaces

.nextElement();

Enumeration 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.claqgNRpFaqtss, 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 netInterfaces = (Enumeration) NetworkInterface

.getNetworkInterfaces();

while (netInterfaces.hasMoreElements()) {

if (bFindIP) {

break;

}

ni = (NetworkInterface) netInterfaces

.nextElement();

// ----------特定情况,可以考虑用ni.getName判断

// 遍历所有ip

Enumeration 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 getMacIds() {

InetAddress ip = null;

NetworkInterface ni = null;

List macList = new ArrayList();

try {

Enumeration netInterfaces = (Enumeration) NetworkInterface

.getNetworkInterfaces();

while (netInterfaces.hasMoreElements()) {

ni = (NetworkInterface) netInterfaces

.nextElement();

// ----------特定情况,可以考虑用ni.getName判断

// 遍历所有ip

Enumeration 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程序设计有所帮助。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:API文档示例的编写规范
下一篇:高效的API文档生成器:自动化接口文档的最佳选择
相关文章

 发表评论

暂时没有评论,来抢沙发吧~