网络编程—IP

2022/5/26 1:51:17

本文主要是介绍网络编程—IP,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

网络编程—IP

IP地址: InetAddress

  • 唯一定位的网络上的计算机

  • 127.0.0.1 ;本机Locathost

  • ip地址分类

    • ipv4/ipv6

      • IPV4 127.0.0.1 , 0~255, 42亿

      • IPV6 128位 8个无符号整数

  • 公网(互联网)—私网(局域网)

​ ABCD类地址

​ 192.168.XX.XX 专门给组织内部使用

  • 域名:记忆问题

    • IP
package com.deng.lesson01;

import java.net.InetAddress;
import java.net.UnknownHostException;
//测试IP
public class TestInetAddress {
    public static void main(String[] args) {
        try {
            //查询本机地址
            InetAddress inetAddress1 = InetAddress.getByName("127.0.0.1");
            System.out.println(inetAddress1);
            InetAddress inetAddress3 = InetAddress.getByName("localhost");
            System.out.println(inetAddress3);
            InetAddress inetAddress4= InetAddress.getLocalHost();
            System.out.println(inetAddress4);
            
            //查询网站IP地址
            InetAddress inetAddress2 = InetAddress.getByName("www.baidu.com");
            System.out.println(inetAddress2);

            //常用方法
            //System.out.println(inetAddress1.getAddress());
            System.out.println(inetAddress2.getCanonicalHostName());//规范的名字
            System.out.println(inetAddress3.getHostAddress());//IP
            System.out.println(inetAddress4.getHostName());//域名 或者本机的名字
        }catch (UnknownHostException e){
          e.printStackTrace();
        }
    }
}


这篇关于网络编程—IP的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程