文章分类 -  java算法

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 yuewuxing 阅读(229) 评论(0) 推荐(0)