java编写ping程序源代码_java实现Ping示例代码
时间: 2024-02-01 10:04:52 浏览: 93
下面是Java编写Ping程序的示例代码:
```java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.InetAddress;
import java.net.UnknownHostException;
public class PingExample {
public static void main(String[] args) throws IOException {
String ipAddress = "www.google.com";
InetAddress inetAddress = InetAddress.getByName(ipAddress);
System.out.println("Sending Ping Request to " + ipAddress);
if (inetAddress.isReachable(5000)) {
System.out.println(ipAddress + " is reachable.");
} else {
System.out.println(ipAddress + " is not reachable.");
}
}
}
```
在上面的示例代码中,我们使用InetAddress类获取了要Ping的IP地址,然后使用isReachable方法发送Ping请求并等待响应。如果在指定时间内收到响应,则认为IP地址是可达的。
阅读全文