码迷,mamicode.com
首页 > 编程语言 > 详细

Java Networking: InetAddress

时间:2014-10-21 03:34:00      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   java   for   sp   div   

The InetAddress is Java‘s representation of an IP address. Instances of this class are used together with UDP DatagramSockets and normal Socket‘s and ServerSocket‘s.

Creating an InetAddress Instance

InetAddress has no public contructor, so you must obtain instances via a set of static methods.

Here is how to get the InetAddress instance for a domain name:

InetAddress address = InetAddress.getByName("jenkov.com");

And here is how to get the InetAddress matching a String representation of an IP address:

InetAddress address = InetAddress.getByName("78.46.84.171");

And, here is how to obtain the IP address of the localhost (the computer the program is running on):

InetAddress address = InetAddress.getLocalHost();

Additional InetAddress Methods

The InetAddress class has a lot of additional methods you can use. For instance, you can obtain the IP address as a byte array by calling getAddress() etc. To learn more about these methods, it is easier to read the JavaDoc for the InetAddress class though.

 

Java Networking: InetAddress

标签:blog   http   io   os   ar   java   for   sp   div   

原文地址:http://www.cnblogs.com/ghgyj/p/4039355.html

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