我开发了一个java应用程序,它连接到facebook rest api并执行各种任务。
它必须运行在哪里是公司代理服务器,我已经尝试了各种JVM级代理设置,但对我来说没有任何工作。我试过了
1
System.setProperty("http.proxyHost", getHTTPHost());
System.setProperty("http.proxyPort", getHTTPPort());
System.setProperty("https.proxyHost", getHTTPHost());
System.setProperty("https.proxyPort", getHTTPPort());
2
$> java -Dhttp.proxyHost=proxyhostURL
-Dhttp.proxyPort=proxyPortNumber
-Dhttp.proxyUser=someUserName
-Dhttp.proxyPassword=somePassword HelloWorldClass
有人可以告诉我工作方法吗?