📄 2.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 + -