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://captchaproxies.com/");
URLConnection urlConnection = url.openConnection(proxy);
Scanner scanner = new Scanner(urlConnection.getInputStream());
System.out.println(scanner.next());
scanner.close();
}
}
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article