关于InetAddress类

前言:
1> Internet上的主机有两种方式表示地址:
域名(hostName):www.atguigu.com
IP 地址(hostAddress):202.108.35.210
2> InetAddress类主要表示IP地址,两个子类:Inet4Address、Inet6Address。
3> InetAddress 类对象含有一个 Internet 主机地址的域名和IP地址:www.atguigu.com 和 202.108.35.210。
4> InetAddress类没有提供公共的构造器,而是提供了如下两个静态方法来获取InetAddress实例

5> InetAddress提供了如下几个常用的方法


代码示例如下:
package com.atguigu.java1;

import java.net.InetAddress;
import java.net.UnknownHostException;

/*
 * 网络通信的第一个要素:IP地址。通过IP地址,唯一的定位互联网上一台主机
 * InetAddress:位于java.net包下
 * 1.InetAddress用来代表IP地址。一个InetAdress的对象就代表着一个IP地址
 * 2.如何创建InetAddress的对象:getByName(String host)
 * 3.getHostName(): 获取IP地址对应的域名
 *   getHostAddress():获取IP地址
 */
public class TestInetAddress {
    public static void main(String[] args) throws Exception {
    //创建一个InetAddress对象:getByName()
    InetAddress inet = InetAddress.getByName("www.atguigu.com");
    //inet = InetAddress.getByName("42.121.6.2");
    System.out.println(inet);
    //两个方法
    System.out.println(inet.getHostName());
    System.out.println(inet.getHostAddress());
    //获取本机的IP:getLocalHost()
    InetAddress inet1 = InetAddress.getLocalHost();
    System.out.println(inet1);
    System.out.println(inet1.getHostName());
    System.out.println(inet1.getHostAddress());
    }
}


运行的结果如下:
www.atguigu.com/42.121.6.2
www.atguigu.com
42.121.6.2
PC-20150411BHRQ/192.168.182.1
PC-20150411BHRQ
192.168.182.1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值