?? testinetaddress.java
字號:
package apibook.c5.s1;import java.net.*;//測試InetAddress類public class TestInetAddress { public TestInetAddress() { } public static void main(String[] args) { try{ InetAddress a = InetAddress.getByName("localhost");//以本機名測試 System.out.println("by name:" + a);//輸出結果 a = InetAddress.getByName("127.0.0.1");//以本機ip測試 System.out.println("by ip:" + a);//輸出結果 } catch (Exception e) { e.printStackTrace(); } }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -