Java API Tutorial - Java URL.openConnection(Proxy proxy)








Syntax

URL.openConnection(Proxy proxy) has the following syntax.

public URLConnection openConnection(Proxy proxy)    throws IOException

Example

In the following code shows how to use URL.openConnection(Proxy proxy) method.

//www  . j  av a2  s  . c  o m
           
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.URL;

public class Main {

    public static void main(String args[]) throws Exception {
        URL u = new URL("http://www.yourserver.com:80/abc/demo.htm");
        System.out.println("The URL is " + u);
        System.out.println("The file part is " + u.getFile());
        u.openConnection(new Proxy(Proxy.Type.HTTP, new InetSocketAddress("192.1.1.10",10)));

    }
}

The code above generates the following result.