Print the URL of a URLConnection

This page discusses - Print the URL of a URLConnection

Print the URL of a URLConnection

Print the URL of a URLConnection

     

In this section we are going to describe, how to retieve the value of the URL assign to the url object. Here is the complete code of the program in which first of all we establish a connection then display it. In the example we open the connection by using the openConnection() method. After that we use the getURL() which returns the value of this URLConnection's URL field to display the assign URL. 

Here is the Output of the Example :

import java.net.*;
import java.io.IOException;

public class printURLConnection {
  public static void main(String args[]) {

  URL url;
  URLConnection uc;

  try {
  url = new URL("http://roseindia.net/");
  try {
  uc = url.openConnection();
  System.out.println(uc.getURL());
  }
  catch (IOException exp) {
  System.err.println(exp);
  }
  }
  catch (MalformedURLException exp) {
  System.err.println(exp);
  }
  }
}

Here is the Output of the Example :

C:\roseindia>javac printURLConnection.java

C:\roseindia>java printURLConnection
http://roseindia.net/

Download This Form.