⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oreilly.java

📁 JSON(javascript) object creator and examples
💻 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 + -