📄 inetaddresstest.java
字号:
import java.net.InetAddress;import java.net.Inet6Address;public class InetAddressTest{ public static void main(String args[]) throws Throwable { InetAddress ia; ia = InetAddress.getByName(null); System.out.println("(null) = " + check(ia)); ia = InetAddress.getByName(""); System.out.println("\"\" = " + check(ia)); ia = InetAddress.getByName("localhost"); System.out.println("localhost = " + check(ia)); if( !ia.isLoopbackAddress() ) { System.out.println("Not a loopback?"); } } private static String check(InetAddress ia) throws Throwable { if (ia instanceof Inet6Address) { if (ia.toString().equals("localhost/::::::::1") || ia.toString().equals("localhost/0:0:0:0:0:0:0:1")) { return "localhost/127.0.0.1"; } } else { if (ia.toString().equals("localhost/127.0.0.1")) { return "localhost/127.0.0.1"; } } return ia.toString(); }}/* Expected Output:(null) = localhost/127.0.0.1"" = localhost/127.0.0.1localhost = localhost/127.0.0.1*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -