JAVA

JAVA Server IP 및 Server Name 가져오기

주원만쉐 2023. 11. 15. 14:46
728x90

public static String getHostAddress(){

String result = null;

try {

result = InetAddress.getLocalHost().getHostAddress();

} catch (UnknownHostException e) {

result = "";

}

return result;

}

public static String getHostName(){

String result = null;

try {

result = InetAddress.getLocalHost().getHostName();

} catch (UnknownHostException e) {

result = "";

}

return result;

}

728x90