Java URLConnection.toString()
Syntax
URLConnection.toString() has the following syntax.
public String toString()
Example
In the following code shows how to use URLConnection.toString() method.
import java.net.URL;
import java.net.URLConnection;
/* w ww .j a v a 2 s . com*/
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.toString());
}
}
The code above generates the following result.