How do I determine whether a web proxy IP is of type HTTP or SOCKS4/5 with java?

Thank you.

link|improve this question
feedback

2 Answers

If you want to determine the type of proxy being used from Java, you can use ProxySelector and Proxy.

e.g.

import java.net.Proxy;
import java.net.ProxySelector;
import java.net.URI;
import java.util.List;

public class ProxyTest
{
    public static void main(String... args)
    {
        System.setProperty("java.net.useSystemProxies", "true");

        List<Proxy> proxyList = ProxySelector.getDefault().select(URI.create("http://www.google.com"));
        if (!proxyList.isEmpty())
        {
            Proxy proxy = proxyList.get(0);
            switch (proxy.type())
            {
                case DIRECT:
                    System.out.println("Direct connection - no proxy.");
                    break;
                case HTTP:
                    System.out.println("HTTP proxy: " + proxy.address());
                    break;
                case SOCKS:
                    System.out.println("SOCKS proxy: " + proxy.address());
                    break;
            }
        }
    }
}
link|improve this answer
How do I give the selector a proxy IP? and is it possible to avoid a system wide setting? – john Jul 26 '11 at 8:18
Ah, I think I misunderstood your question. You want to detect the type of proxy based on an IP address. The solution I gave has Java look at the system configuration. As far as I know, Java doesn't do detection of what type a proxy is, it just reads it from the system configuration. To detect the type of proxy, you could try using it as an HTTP proxy and then a SOCKS proxy, and pick the method that doesn't fail. – prunge Jul 26 '11 at 22:50
feedback

As mentioned in the comments from my other answer, if you know the IP address of a proxy server and want to detect what type it is, you could try each proxy type in Java until one works.

import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.SocketException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Arrays;
import java.util.List;

public class ProxyTest
{
    public static void main(String... args)
    throws IOException
    {
        InetSocketAddress proxyAddress = new InetSocketAddress("myproxyaddress", 1234);
        Proxy.Type proxyType = detectProxyType(proxyAddress);
        System.out.println(proxyAddress + " is a " + proxyType + " proxy.");
    }

    public static Proxy.Type detectProxyType(InetSocketAddress proxyAddress)
    throws IOException
    {
        URL url = new URL("http://www.google.com");
        List<Proxy.Type> proxyTypesToTry = Arrays.asList(Proxy.Type.SOCKS, Proxy.Type.HTTP);

        for (Proxy.Type proxyType : proxyTypesToTry)
        {
            Proxy proxy = new Proxy(proxyType, proxyAddress);

            //Try with SOCKS
            URLConnection connection = null;
            try
            {
                connection = url.openConnection(proxy);

                //Can modify timeouts if default timeout is taking too long
                //connection.setConnectTimeout(1000);
                //connection.setReadTimeout(1000);

                connection.getContent();

                //If we get here we made a successful connection
                return(proxyType);
            }
            catch (SocketException e) //or possibly more generic IOException?
            {
                //Proxy connection failed
            }
        }

        //No proxies worked if we get here
        return(null);
    }
}

In this code, it first tries to connect to www.google.com using the proxy at myproxyaddress with SOCKS, and if that fails it will try using it as an HTTP proxy, returning the method that worked, or null if none worked.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.