首页>代码>java SNMP简单测试实例>/SNMP/src/GetHost.java
import java.io.IOException;
import java.net.Inet4Address;
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.util.Enumeration;

@SuppressWarnings("rawtypes")
public class GetHost {
	public static void main(String[] args) throws IOException {
		Enumeration allNetInterfaces = NetworkInterface.getNetworkInterfaces();
		InetAddress ip = null;
		while (allNetInterfaces.hasMoreElements()) {
			NetworkInterface netInterface = (NetworkInterface) allNetInterfaces
					.nextElement();
			 System.out.println(netInterface.getName());
			Enumeration addresses = netInterface.getInetAddresses();
			while (addresses.hasMoreElements()) {
				ip = (InetAddress) addresses.nextElement();
				if (ip != null && ip instanceof Inet4Address) {
					System.out.println("本机的IP = " + ip.getHostAddress());
				}
			}
		}
	}
}
最近下载更多
honglonghua  LV1 2023年2月9日
yzh_falcon  LV3 2022年10月18日
qwaszx123123  LV1 2022年9月17日
gaotieyou  LV5 2022年4月19日
xingbing  LV9 2022年2月9日
余长城  LV4 2022年1月29日
巨魔  LV1 2021年9月6日
newbag  LV9 2021年8月9日
wc2021  LV1 2021年7月4日
lz88888  LV12 2021年6月4日
最近浏览更多
kenhomeliu  LV29 4月30日
yzh_falcon  LV3 2022年10月18日
zw050256  LV7 2022年9月30日
qwaszx123123  LV1 2022年9月17日
GZW012345  LV8 2022年5月21日
13165798872  LV11 2022年5月17日
zlfsgg  LV3 2022年4月26日
gaotieyou  LV5 2022年4月19日
xingbing  LV9 2022年2月9日
余长城  LV4 2022年1月29日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友