I am a newbie to Java and my first task is to parse some 10,000 urls and extract some info outta it, for this I am using Jsoup and its working fine. But now I want to add proxy support to it. The Proxies have a username and password too. Can any1 help me with this. Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You don't have to get the webpage data through Jsoup. Here's my solution, it may not be the best though.
And there it is. This gets the source of the html page through a proxy and then parses it with Jsoup. |
||||
|
|
|
You can easily set proxy
|
|||
|
|
It a better solution for anyone who wants to manage connections through Jsoup wrapper It works. Checked via http://www.whatismyip.com/ |
|||
|
|
|
and if you're after HTTPS like me, remember to try
|
|||
|
|