其他分享
首页 > 其他分享> > InetAddress 的使用

InetAddress 的使用

作者:互联网

package NetworkProgramming.InetAdressTest;

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

/**
* FileName: InetAdressDemo01
* Author: lps
* Date: 2022/4/1 11:59
* Sign:刘品水 Q:1944900433
*static InetAddress[] getAllByName(String host)
*给定一个主机的名称,返回其IP地址的数组,基于系统上的配置的名称服务。
* String getHostAddress()
* 返回文本表示中的IP地址字符串。
* String getHostName()
* 获取此IP地址的主机名。
*
*/
public class InetAdressDemo01 {
public static void main(String[] args) throws UnknownHostException {
//static InetAddress getByAddress(byte[] addr)
//返回给定的原始IP地址 InetAddress对象。
///InetAddress address = InetAddress.getByName("lps");
InetAddress address = InetAddress.getByName("192.168.10.102");

//* String getHostAddress()
// * 返回文本表示中的IP地址字符串。
String ip = address.getHostAddress();
System.out.println("IP地址:"+ip);
String name = address.getHostName();
System.out.println("主机名:"+name);


}
}

 

标签:String,address,使用,static,IP地址,InetAddress,getHostAddress
来源: https://www.cnblogs.com/lps1944900433/p/16086447.html