Eclipse jvm运行时设置代理

 

 Eclipse 编写应用程序设置代理

对于一般的Web程序, 需要访问网络资源, 此时设置的代理是使得JAVA VM通过代理访问,设置方式是:

Run As ->Run Configurations.. ->(x=)Argument:->VM Arguments下添加:

-Dhttp.proxyHost=代理IP地址 -Dhttp.proxyPort=端口

例如:

-Dhttp.proxyHost=192.168.0.26 -Dhttp.proxyPort=8080

你可能感兴趣的:(eclipse)