java实现ping功能
摘要:java实现ping功能一、纯Java实现ICMP的ping命令import java.io.*;import java.net.*;import java.nio.channels.*;import java.util.*;import java.util.regex.*;public class Ping { static int DAYTIME_PORT = 13; static int port = DAYTIME_PORT; static class Target { InetSocketAddress address; SocketChannel channel; Exceptio
阅读全文
posted @ 2012-04-23 12:48
浙公网安备 33010602011771号