Java URL(String protocol, String host, String file) Constructor

Syntax

URL(String protocol, String host, String file) constructor from URL has the following syntax.

public URL(String protocol,  String host,  String file) throws MalformedURLException

Example

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 o  m
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.





















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder