InetAddress---表示互联网协议(IP)地址 ---InetAddress.getByName("www.163.com")----在给定主机名的情况下确定主机的IP地址 ----如果参数为null,获得的是本机的IP地址 import java.net.*; public class MyHost { public static void main(String args[]) { InetAddress ip = null;
一.IP 1.地址格式 互联网上每一台计算机都有一个唯一标示自己的标记,这个标记就是IP地址.IP 地址使用32 位长度二进制数据标示,一般在实际中看到的大部分IP地址都是以十进制的数据形式标示的,如:192.168.1.3,IP地址格式如下: IP 地址 = 网络地址 + 主机地址 网络号:用于识别主机所在的网络 主机号:用于识别网络中的主机 2.地址分类 IP地址按照数字区域,分为5类,如下所示: A 类:政府机构 B 类:中等规模的公司 C 类:任何需要的人 D 类:用于组播 E 类:用于
基础知识 1.InetAddress类 在网络API套接字,InetAddress类和它的子类型对象使用域名DNS系统,处理主机名到主机IPv4或IPv6地址的转换.如图1-1所示. 由于InetAddress类只有一个构造函数,且不能传递参数,所以不能直接创建该对象实例,比如下面的做法就是错误的: InetAddress ia = new InetAddress (); × 可通过以下5个成员方法获得InetAddress对象或InetAddress数组: l getA
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 o
The InetAddress class has no visible constructors. To create an InetAddress object, you have to use one of the available factory methods. Factory methods are merely a convention whereby static methods in a class return an instance of that class. This