Online Java Compiler By
JavaTpoint.com
import java.net.URL; import java.util.Scanner; public class URLequalsExample { public static void main(String args[]) throws Exception { //passing url in constructor URL url1=new URL("https://www.javatpoint.com/java-threadpoolexecutor"); URL url2 =new URL("https://www.javatpoint.com/java-threadpoolexecutor"); //comparing url with other object System.out.println("Matching url : "+url1.equals(url2)); } }
Output