首页 > 代码库 > 类InetAddress
类InetAddress
如果一个类没有构造方法:
A:成员全部是静态的(Math,Arrays,Collections)
B:单例设计模式(Runtime)
C:类中有静态方法返回该类的对象(InetAddress)
public static InetAddress getByName(String host);//根据计算机名或者IP地址的字符串表示得到IP地址对象
import java.net.InetAddress; import java.net.UnknownHostException; /* 如果一个类没有构造方法: A:成员全部是静态的(Math,Arrays,Collections) B:单例设计模式(Runtime) C:类中有静态方法返回该类的对象(InetAddress) public static InetAddress getByName(String host);//根据计算机名或者IP地址的字符串表示得到IP地址对象 */ public class Example6_3 { public static void main(String args[]) throws UnknownHostException { InetAddress address1 = InetAddress.getByName("QY-DENGGL18.gd.ctc.com");// 根据计算机名或者IP地址的字符串表示得到IP地址对象 String name1 = address1.getHostName();// 获取计算机名 String ip1 = address1.getHostAddress();// 获取IP地址 System.out.println(name1 + "--------" + ip1); InetAddress address2 = InetAddress.getByName("10.18.46.40");// 根据计算机名或者IP地址的字符串表示得到IP地址对象 String name2 = address2.getHostName();// 获取计算机名 String ip2 = address2.getHostAddress();// 获取IP地址 System.out.println(name2 + "--------" + ip2); } }
类InetAddress
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。