All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fi.evolver.utils.ServerUtils Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
package fi.evolver.utils;

import java.net.InetAddress;
import java.net.UnknownHostException;

public class ServerUtils {

	public static final String LOCAL_HOST_NAME;

	static {
		String localHostName = "?";
		try {
			localHostName = InetAddress.getLocalHost().getHostName();
		} catch (UnknownHostException e) {
			e.printStackTrace();
		}
		LOCAL_HOST_NAME = localHostName;
	}


	private ServerUtils() { }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy