I want to check if a string is a hostname or an ip-address in Java. Is there an API to do it or must I write a parser myself?
The problem is complex because there are IPv4 addresses, short and long IPv6 addresses, short hostnames and FQDN host names.
There doesn't appear to be an API, but writing such function doesn't seem to be very difficult. You can check the following conditions in your code:
To expand @MrGomez 's answer, Use InetAddresses to validate IP Addresses and InternetDomainName to validate hostnames (FQDN).
Example:
public static boolean validate(final String hostname) {
return InetAddresses.isUriInetAddress(hostname) || InternetDomainName.isValid(hostname);
}
While you could theoretically write rules to handle these cases yourself, using the usual cadre of RFCs, I'd instead look at the entirety of this class in Google Guava, especially the corner cases, such as how it resolves the embedding of 4-in-6 addresses.
As for determining if you have a FQDN, see if coercion to IP address fails, then try to resolve it against DNS. Anything else should, given your input cases, be a hostname or local resolution that isn't fully qualified.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With