I am trying to convert strings into Inetaddress. I am not trying to resolve hostnames, the strings are ipv4 addresses, does InetAddress.getByName(String host) work? Or do I have to manually parse it?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Yes, that will work. The API is very clear on this ("The host name can either be a machine name, such as "java.sun.com", or a textual representation of its IP address."), and of course you could easily check yourself.

link|improve this answer
Thanks, I looked up the api, and missed that line. – TiansHUo Feb 22 '10 at 5:49
Whats when host is a pattern like 192.168.0.*? Will that work too? Regarding to Inet4Address doc there seems support for this. – Paranaix Feb 24 at 13:58
@Paranaix, no, it will throw a IllegalArgumentException with the message "invalid host wildcard specification" – Matthew Flaschen Feb 24 at 16:24
1  
in particular, the documentation says: If a literal IP address is supplied, only the validity of the address format is checked. which I read as: 'if you specify a (dotted quad notation) IP address, no DNS lookup is performed'. – Andre Holzner Apr 3 at 7:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.