Skip to content

Instantly share code, notes, and snippets.

@ngangavic
Created November 11, 2019 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngangavic/201078b1378135742445e45c53b11667 to your computer and use it in GitHub Desktop.
Save ngangavic/201078b1378135742445e45c53b11667 to your computer and use it in GitHub Desktop.
Get IP Address of a computer using computer name
import java.net.InetAddress;
public class IpAddress {
public static void main(String args[]) throws Exception{
InetAddress inetAddress = InetAddress.getByName("HOME-OFFICE");
System.out.println(inetAddress.getHostAddress());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment