Mega Code Archive

 
Categories / Java / Network Protocol
 

URL Equality

import java.net.MalformedURLException; import java.net.URL; public class URLEquality {   public static void main (String args[]) {     try {       URL sunsite = new URL ("http://www.rntsoft.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);     }   } }