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

📄 showaddress.java

📁 本程序是用来显示本机的IP地址和其他的web服务器的IP地址和字符地址的。
💻 JAVA
字号:
import java.net.*;
public class ShowAddress {
public static void main(String args[])
{
try{
InetAddress localAddress=InetAddress.getLocalHost();
InetAddress addr=InetAddress.getByName("www.126.com");
System.out.println("Local Ip address:"+localAddress.getHostAddress());
System.out.println("Local Name:"+localAddress.getHostName());
System.out.println("Web Ip address:"+addr.getHostAddress());
System.out.println("Web Host Name:"+addr.getHostName());}
catch(UnknownHostException uhe){
System.out.println("Error-unable to resolve hostname");}
}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -