Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have some code to test if the proxy server and port is working ,some of the code like this:

System.getProperties().put("proxySet", "true");
System.getProperties().put("https.proxyHost", "localhost");
System.getProperties().put("https.proxyPort", "1234");
System.getProperties().put("http.proxyHost", "localhost");
System.getProperties().put("http.proxyPort", "1234");
HttpURLConnection conn = (HttpURLConnection) new URL("https://www.google.com").openConnection();
conn.getContent();
conn.disconnect();

it seems that openConnection() method will do thing like this:

  1. try to connect given URL using proxy.
  2. if it fails to use proxy,it will connect URL directly without proxy.

that's the problem,i meant to test if the proxy is working,but this code won't stop if the proxy can not connect.

i also tried to use isReachable() method of InetAddress class,but i get the same result.

so how could i stop this connection if the proxy doesn't work ,in order to test if the proxy is reachable ?

share|improve this question
just get new Proxy object via new java.net.Proxy(SocketAddress,Port). – Barry Wei Oct 18 '10 at 8:45

2 Answers

Sorry guys, I found out the way to do it. I used java.net.Proxy class to open a connection via proxy. It's easy to use and works fine. See Java Networking and Proxies

share|improve this answer
1  
Opening a connection is one thing, but does simply opening it verify that the proxy works? – Burton Kent Sep 25 '12 at 19:15

System.getProperties().put("proxySet", "true");

That one doesn't do anything. It is an urban myth.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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