?? oreilly.java
字號:
import java.net.*;class oreilly { public static void main (String args[]) { try { InetAddress address = InetAddress.getByName("www.oreilly.com"); boolean connected = address.isReachable(5000); //if (connected) System.out.println(address); } catch (UnknownHostException e) { System.out.println("Could not find www.oreilly.com"); } catch (java.io.IOException e) { System.out.println("Could not reach www.oreilly.com"); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -