Iam writing a code that enters websites and checks code, Like a crawler. But I need to coennect trougth a proxy and change the ip (so it doesn't show the clients ip, if soemoen is watching the logs).
How is it possible to this trougth java?
|
|
You can use the java system properties to set up a proxy or pass it as command line options. You can find some details and samples here. Ex: Before opening the connection
Or you can use the default network proxies configured in the sytem
Since Java 1.5 you can create a instance of proxy and pass it to the
Or as lisak suggested, you can use some 3rd party libraries which supports your need better. |
||||
|
|
|
Or you can also use HttpClient which would suit your needs better. Check out the documentation, it's brief and very informative.
|
|||
|
|