一、Java获取本机IP
在Java中获取本机IP地址是比较简单的,可以通过InetAddress
类来实现。下面是获取本机IP的示例代码:
import java.net.InetAddress;
public class GetLocalIP {
public static void main(String[] args) {
try{
InetAddress address = InetAddress.getLocalHost();
System.out.println("本机IP地址:" + address.getHostAddress());
}catch(Exception e){
e.printStackTrace();
}
}
}
运行上述代码后,可以得到本机IP地址。
二、Java获取指定主机的IP
除了可以获取本机IP地址外,Java还可以获取指定主机的IP地址。下面是获取指定主机IP的示例代码:
import java.net.InetAddress;
public class GetSpecifiedIP {
public static void main(String[] args) {
try{
InetAddress address = InetAddress.getByName("www.baidu.com");
System.out.println("百度IP地址:" + address.getHostAddress());
}catch(Exception e){
e.printStackTrace();
}
}
}
运行上述代码后,可以得到输入的主机IP地址。
三、Java获取本机所有IP地址
有时候我们需要获取本机的所有IP地址。Java中也可以通过InetAddress
类来实现。下面是获取本机所有IP地址的示例代码:
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.util.Enumeration;
public class GetAllIP {
public static void main(String[] args) {
try{
Enumeration allNetInterfaces = NetworkInterface.getNetworkInterfaces();
InetAddress ip = null;
while (allNetInterfaces.hasMoreElements()) {
NetworkInterface netInterface = (NetworkInterface) allNetInterfaces.nextElement();
Enumeration addresses = netInterface.getInetAddresses();
while (addresses.hasMoreElements()) {
ip = (InetAddress) addresses.nextElement();
if (ip != null && ip instanceof InetAddress && !ip.isLoopbackAddress()) {
System.out.println(netInterface.getName() + " " + ip.getHostAddress());
}
}
}
}catch(Exception e){
e.printStackTrace();
}
}
}
运行上述代码后,可以得到本机所有IP地址。
四、Java获取MAC地址
在Java中获取MAC地址需要借助第三方库。下面是获取MAC地址的示例代码:
import java.net.InetAddress;
import java.net.NetworkInterface;
public class GetMacAddress {
public static void main(String[] args) {
try {
InetAddress address = InetAddress.getLocalHost();
NetworkInterface ni = NetworkInterface.getByInetAddress(address);
byte[] mac = ni.getHardwareAddress();
StringBuilder sb = new StringBuilder();
for (int i = 0; i < mac.length; i++) {
if (i != 0) {
sb.append(":");
}
// 字节转换为整数
int temp = mac[i] & 0xff;
String str = Integer.toHexString(temp);
if (str.length() == 1) {
sb.append("0" + str);
} else {
sb.append(str);
}
}
System.out.println("MAC地址:" + sb.toString().toUpperCase());
} catch (Exception e) {
e.printStackTrace();
}
}
}
运行上述代码后,可以得到本机的MAC地址。