DoubleD Posted May 26, 2017 Share Posted May 26, 2017 Title is the question. I have seen LOUDIP but I am not able to get it functioning. Are there any ways to check if the proxy is working correctly? Quote Link to comment Share on other sites More sharing options...
dmmslaver Posted May 26, 2017 Share Posted May 26, 2017 (edited) sec public String getCurrentIPAddress() { try { URL url = new URL("http://myip.dnsomatic.com/"); try (BufferedReader b = new BufferedReader(new InputStreamReader(url.openStream()))) { String ip = b.readLine(); return ip; } } catch (Exception e) { e.printStackTrace(); } return "null"; } Edited May 26, 2017 by dmmslaver Quote Link to comment Share on other sites More sharing options...
Hi G00gle Posted May 26, 2017 Share Posted May 26, 2017 You can also use Proxifier proxy checker. https://www.proxifier.com/proxychecker/ Quote Link to comment Share on other sites More sharing options...