平安地址
//package com.nowjava; import java.io.IOException; /** * n o w j a v a . c o m - 时 代 Java 提 供 **/ import java.net.InetSocketAddress; import java.net.Socket; public class Main { @SuppressWarnings("resource") public static boolean ping(String address, int port) { InetSocketAddress isa = new InetSocketAddress(address, port); Socket connection = new Socket(); try { connection.connect(isa, 5 * 1000); } catch (IOException e) {