📄 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 + -