반응형
import java.net.*;
class Net {
public static void main(String[] args) throws Exception {
InetAddress inet = InetAddress.getLocalHost();
System.out.println("Local host IP : " + inet.getHostAddress());
}
}
반응형