随笔 - 53  文章 - 0  评论 - 0  阅读 - 4186

网络编程—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();
        }
    }
}
posted on   松下的蘑菇  阅读(38)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示