码迷,mamicode.com
首页 > Web开发 > 详细

网络(Internet)

时间:2020-02-12 16:52:29      阅读:92      评论:0      收藏:0      [点我收藏+]

标签:let   sys   tip   host   imp   方法   address   system   gif   

(1)获取IP地址

技术图片
 1 package JavaEE.JavaBaseExampleTest.Internet;
 2 
 3 import java.net.InetAddress;
 4 import java.net.UnknownHostException;
 5 
 6 /**
 7  * 使用 InetAddress 类的 InetAddress.getByName() 方法来获取指定主机(网址)的IP地址
 8  */
 9 public class GetIP {
10     public static void main(String[] args){
11         InetAddress address = null;
12         try {
13             address = InetAddress.getByName("www.w3cschool.cn");
14         }catch (UnknownHostException e){
15             System.exit(2);
16         }
17         System.out.println(address.getHostName() + "=" + address.getHostAddress());
18         System.exit(0);
19     }
20 }
View Code

 

网络(Internet)

标签:let   sys   tip   host   imp   方法   address   system   gif   

原文地址:https://www.cnblogs.com/skygrass0531/p/12299270.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!