[c]http.proxyHost[/c]: the host name of the proxy server
[c]http.proxyPort[/c]: the port number, the default value being 80.
[c]http.nonProxyHosts[/c]: a list of hosts that should be reached directly, bypassing the proxy. This is a list of patterns separated by '|'. The patterns may start or end with a '*' for wildcards. Any host matching one of these patterns will be reached through a direct connection instead of through a proxy.
java -Dhttp.proxyHost=foo.com -D... -jar FooBar.jar
System.setProperty("proxyHost", "proxy.xxx");
System.setProperty("proxyPort", "8080");
Funktioniert leider nicht.
Was bedeutet die Option?Code:-jar FooBar.jar
Was für ein URLReader muss ich hier angeben?
Ich stehe total auf dem Schlauch