Before using our proxies, ensure that your server IP address is authorized via the proxy control panel.
Sample code for using proxies in Java code:
import java.net.*;
import java.util.Scanner;
class ProxyTest {
public static void main(String[] args) throws Exception {
InetSocketAddress proxyAddress = new InetSocketAddress("1.1.1.1", 8800); // Set proxy IP/port.
Proxy proxy = new Proxy(Proxy.Type.HTTP, proxyAddress);
URL url = new URL("http://checkip.instantproxies.com/");
URLConnection urlConnection = url.openConnection(proxy);
Scanner scanner = new Scanner(urlConnection.getInputStream());
System.out.println(scanner.next());
scanner.close();
}
}