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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
com.google.common.net.Inetaddresses.forString(String ipString) is better for this as it will not do a DNS lookup regardless of what string is passed to it. |
|||
|
|
|
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. |
|||||||||||||
|
|
You could try using a regular expression to filter-out non-numeric IP addresses before passing the |
|||
|
|