Java URLConnection.getURL()
Syntax
URLConnection.getURL() has the following syntax.
public URL getURL()
Example
In the following code shows how to use URLConnection.getURL() method.
//w ww . jav a2s . co m
import java.net.URL;
import java.net.URLConnection;
public class Main {
public static void main(String args[]) throws Exception {
URL u = new URL("http://www.java2s.com");
URLConnection uc = u.openConnection();
System.out.println(uc.getURL());
}
}
The code above generates the following result.