PING和TELNET用法介绍Java认证考试
文章作者 100test 发表时间 2010:02:10 23:29:20
来源 100Test.Com百考试题网
JAVA里的PING是在JDK 1.5后用了新的函数isreachable去实现,具体介绍如下:
InetAddress对象的常用方法
InetAddress类有很多get方法,用来获取主机名,主机地址等信息。主要有:
byte[] getAddress() 返回次InetAddress对象的原始IP地址,保存为一个byte数组
String getCanonicalHostName() 获取此IP地址的完全限定域名
String getHostAddress() 获取IP地址的字符串,返回为一个String
String getHostName() 获取此IP地址的主机名
下面一个简单的例子展示这些方法的使用:
1 package org.dakiler.javanet.chapter1.
2 import java.net.InetAddress.
3 public class Example3
4 {
5 public static void main(String args[])throws Exception
6 {
7 InetAddress address=InetAddress.getByName("www.microsoft.com").
8 System.out.println("ip: " address.getHostAddress()).
9 System.out.println("host: " address.getHostName()).
10 System.out.println("canonical host name: " address.getCanonicalHostName()).
11 byte[] bytes=address.getAddress().
12 for(byte b:bytes)
13 {
14 if(b