Files
zhongDingTianNeng/hd/nladmin-system/src/test/java/Test.java
2022-08-19 18:17:49 +08:00

17 lines
370 B
Java

import java.net.Inet4Address;
import java.net.InetAddress;
import java.net.UnknownHostException;
/**
* @author: geng by
* @createDate: 2022/8/1
*/
public class Test {
@org.junit.Test
public void test() throws UnknownHostException {
InetAddress localHost = Inet4Address.getLocalHost();
System.out.println(localHost.getHostAddress());
}
}