Skip to content

Instantly share code, notes, and snippets.

@jonasbjork
Created June 29, 2009 07:05
Show Gist options
  • Save jonasbjork/137504 to your computer and use it in GitHub Desktop.
Save jonasbjork/137504 to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
try {
java.net.InetAddress hostname = java.net.InetAddress.getLocalHost();
String hname = hostname.getHostName();
System.out.println("Hostname: " + hname);
} catch(Exception e) {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment