Eclipse中设置代理
1 Eclipse Update时代理设置
在 Eclipse安装一些新的插件时,一般最好Help->Software Update来升级.但是在教育网中需要找到代理才能访问国际网, 设置代理的方式如下:Window->Preferences->Install/Update: Proxy Settings
2 Eclipse 编写应用程序设置代理
对于一般的Web Service程序, 需要访问网络资源, 此时设置的代理是使得JAVA VM通过代理访问,设置方式是:Run->Run…->(x=)Argument:VM Arguments下设置:
-Dhttp.proxyHost=[代理IP地址] [空格] -Dhttp.proxyPort=[端口]
注:[]不需要加,如一个具体的实例如下:
-Dhttp.proxyHost=202.189.126.86 -Dhttp.proxyPort=3128
3 Eclipse CVS 代理设置
Window->Preferences->Team->CVS->Proxy Settings4 为eclipse的svn插件subclipse设置代理
找到 C:\Documents and Settings\your userName\Application Data\Subversion 这个目录下的servers文件,用任意一个文本编辑器打开,找到 类似于如下的文字:1[global] 2#?http-proxy-exceptions?=?*.exception.com,?www.internal-site.org 3#http-proxy-host?=?proxy2.some-domain-name.com 4#http-proxy-port?=?9000 5#?http-proxy-username?=?defaultusername ?将1#http-proxy-host 2#http-proxy-port 这两行前面的#号去掉,并将=号右边的值分别改为你的代理服务器地址和端口号即可。