Home Java Network Print the URL of a URLConnection



Print the URL of a URLConnection
Posted on: December 19, 2008 at 12:00 AM
In this section we are going to describe, how to retieve the value of the URL assign to the url object.

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 of this example.

 

Related Tags for Print the URL of a URLConnection:
ccomurlobjectioconnectionmethodgetdisplayvaluefieldreturnusingthisopentabconnectieexampleprogramtoramexamldssisheurlconnectionsignitdessectionlisplusepefirstcompleteinasstamplayletjispafteresallpenmehowobjprodescribetiexawhichxampsurnspgeturlatisirhallmplgoarcodcodevascrssrithstabablaluafhatdispjepleplprodeonomogro


More Tutorials from this section

Ask Questions?    Discuss: Print the URL of a URLConnection  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.