网络编程 IP地址

网络编程的目的:数据交换 通信、

达到网络通信效果需要什么?

通过ip定位网络上的一台主机 ,和端口,定位到这个计算机上的某个资源

IP:java对应的类 inetAddress

 

package com.kuang.lessone1;

import java.net.InetAddress;

import java.net. UnknownHostException;

//测试IP

public class TestInetAddress {

public static void main( String[ ]args) i

try {

InetAddress inetAddress1 = InetAddress.getByName("127.0.0.1");

system.out.println(inetAddress1);

//查询网站ip地址

InetAddress inetAddress2 = InetAddress.getByName( "www.baidu.com" );

system.out.print1n(inetAddress2);

}

catch (UnknownHostException e) {i

e.printStackTrace( );

}

}

 

网络编程 IP地址

上一篇:0708_01_计算机基础


下一篇:第五章 部署master主控节点