import java.net.MalformedURLException;
import java.net.URL;
publicclass URLEquality {
publicstaticvoid main (String args[]) {
try {
URL sunsite = new URL ("http://www.java2s.com");
URL helios = new URL("http://www.demo2s.com");
if (sunsite.equals(helios)) {
System.out.println
(sunsite + " is the same as " + helios);
}
else {
System.out.println
(sunsite + " is not the same as " + helios);
}
}
catch (MalformedURLException e) {
System.err.println(e);
}
}
}