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?
|
|
Use URI instead of URL. |
||||
|
|
|
Don't use URL.equals. As the documentation says,
|
||||||
|
|
|
If you just want to compare the url strings, try
|
||||
|
