URL(String protocol, String host, String file) constructor from URL has the following syntax.
public URL(String protocol, String host, String file) throws MalformedURLException
In the following code shows how to use URL.URL(String protocol, String host, String file) constructor.
/*ww w .j a va 2 s . c om*/ import java.net.URL; public class Main{ public static void main (String args[]) throws Exception{ URL webURL = new URL("http", "www.macfaq.com", "/vendor.html"); System.out.println(webURL); URL ftpURL = new URL("ftp", "ftp.macfaq.com", "/pub"); System.out.println(ftpURL); } }
The code above generates the following result.