首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

获得本机IP地址,本机名

2012-08-22 
取得本机IP地址,本机名System.out.println(Host Ip Address: + InetAddress.getLocalHost())System.ou

取得本机IP地址,本机名
System.out.println("Host Ip Address: " + InetAddress.getLocalHost());
System.out.println("Local Host: " + InetAddress.getLocalHost());
}catch(UnknownHostException e){
System.out.println(e.toString());
}

?输出结果:

?

Host name: localhost
Host Ip Address: lxw/172.19.7.119
Local Host: lxw/172.19.7.119

热点排行