Java得到服務器連接
如何獲得與Web服務器連接?
解決方法
下麵的例子演示了如何通過使用net.Socket類sock.getInetAddress()方法獲得與Web服務器連接。
import java.net.InetAddress; import java.net.Socket; public class WebPing { public static void main(String[] args) { try { InetAddress addr; Socket sock = new Socket("www.gitbook.net", 80); addr = sock.getInetAddress(); System.out.println("Connected to " + addr); sock.close(); } catch (java.io.IOException e) { System.out.println("Can't connect to " + args[0]); System.out.println(e); } } }
結果
上麵的代碼示例將產生以下結果。
Connected to http://www.gitbook.net/112.124.103.85