vote up 4 vote down star
1

The equals()-method of the URL-class in the Java-class-library makes a DNS-request to get the IP for the hostname, to check the two IP's for equality. This happens even for URL's, that are created from the same String. Is there a way to avoid this internet-access?

flag

79% accept rate

3 Answers

vote up 11 vote down check

Use URI instead of URL.

link|flag
1  
And of course this makes semantic sense too, because you want to compare the Identifiers rather than the Locations – Gareth Nov 13 '08 at 1:01
vote up 0 vote down

Don't use URL.equals. As the documentation says,

Note: The defined behavior for equals is known to be inconsistent with virtual hosting in HTTP.

link|flag
How should I test for equality? – Mnementh Nov 13 '08 at 0:54
You can use toString() or toExternalForm() to get the external form, and compare those. Preliminary testing here shows it doesn't access DNS. – Chris Jester-Young Nov 13 '08 at 0:57
I just upvoted Bill's answer. Just call toURI() on your URL objects. – Chris Jester-Young Nov 13 '08 at 1:00
vote up 1 vote down

If you just want to compare the url strings, try

url1.toString().equals(url2.toString())
link|flag
The two strings could be vastly different but point to the same resource. – Bill the Lizard Nov 13 '08 at 1:02
If you want to check the resource referred to by a URL, you obviously need internet access. Therefore I made the assumption that he wanted to compare the urls themselves. Hence my qualification of "if you just want to compare the url strings". – Rick Nov 13 '08 at 1:46

Your Answer

Get an OpenID
or

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