Eclipse 3.5 Unable to install plugins

后端 未结 17 1005
暗喜
暗喜 2020-12-13 04:30

I really don\'t know what\'s going on with Eclipse 3.5 (3.5.0 or 3.5.1, same issues), but it\'s been now 2 days that I\'m struggling with Eclipse to find a way to make the p

相关标签:
17条回答
  • 2020-12-13 04:56

    I was getting the error while trying to connect for updates. Just did as in the above answer -

    Window-> Preferences-> General-> Network

    There the default provider was set as Native. I changed it to direct as my laptop didn't need to connect to any proxy.

    Applied and it is working fine.

    0 讨论(0)
  • 2020-12-13 05:00

    I also faced the same problem while working with eclips Neon. It got fixed after editing the .ini file with following content:

    >    -Dhttp.proxyPort=8080
    
    >    -Dhttp.proxyHost=myproxy
    
    >    -Dhttp.proxyUser=mydomain\myusername
    
    >    -Dhttp.proxyPassword=mypassword
    
    >    -Dhttp.nonProxyHosts=localhost|127.0.0.1
    
    >    -Djava.net.preferIPv4Stack=true
    

    Note: Sometime it may also caused due to the issue with your Network configuration and device. So conform first that your windows firewall is allowing to connect your eclips to the outer world (internet). (Turn off the windows firewall for the instance of time that your computer take to install the file).

    0 讨论(0)
  • 2020-12-13 05:03

    I meet the same questions in 3.7 on ubuntu 12.04. My Os use a proxy 127.0.0.1,and the eclipse use another proxy 192.168.1.1.

    I read the .log for info. It says !MESSAGE System property http.proxyHost is set to 127.0.0.1 but should be 192.168.1.1.

    so I change the eclipse net work setting to the same as the system . At last,it works.

    0 讨论(0)
  • 2020-12-13 05:05

    There is no need of doing such hectic stuffs. Find in your system where there is "SDK Manager".(incase of windows). Suppose your sdk manager is in E:\Android-9. Go to that path double click the SDK manager ;it will automatically start to download from https://dl-ssl.google.com/../..

    Initially you will se it is failing. On the window that appears there will be 'settings' menu. Click on that set the proxy and port. and it will start downloading.

    The solution in one sentence is "Don't use eclipse for the download;directly use Android sdk manager and your problem is resolved". Let me know if you have any futhur queries on this issue.

    0 讨论(0)
  • 2020-12-13 05:07

    finally I got eclipse 3.7 working behind company firewall. I set to true "java.net.useSystemProxies" option on file "net.properties" located on "C:\Program Files\Java\jre6\lib" (this path could be different for your JRE installation). After that,set Active provider to Native on Eclipse preferences. No need to provide any proxy details anywhere, it just pick it up from system default browser settings

    0 讨论(0)
  • 2020-12-13 05:09

    Its the Windows OS that make the problem. I got the same problem. Then I tried some other app which use JavaVM to connect the internet, and they fails. Try update JRE, you will notice it. If JRE cannot update itself, then there is some socket inaccessibility that prevent internet access apart from using native windows API. I reinstall Win7 and it fixed the problem.

    0 讨论(0)
提交回复
热议问题