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

📄 2.txt

📁 java图形GUI小程序粗糙而且功能有限业呵!刚刚开始学习JAVA,菜鸟一名
💻 TXT
字号:
import java.net.*;
public class Test
{  
 public static void main(String[] arg)
 {
 try {
 InetAddress ia=InetAddress.getLocalHost();
 System.out.println(ia.getHostName());
 System.out.println(ia.getHostAddress());
 }catch(UnknownHostException e)
 {
 //error
 }
 }  
}
////////
import java.net.*;
public class netDemo{
public static void main(String args[]){
InetAddress ia=null;
try{
ia=InetAddress.getLocalHost();
   System.out.println(ia.getHostName());
System.out.println(ia.getHostAddress());
}catch(UnknownHostException e){
}
}
}

⌨️ 快捷键说明

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