STEP1:



        先看看如何加快更新速度,再说如何更新。





首先更新host文件,如图,打开目录 C:\Windows\System32\drivers\etc,在目录下有hosts文件,打开方式选用“记事本”打开。将一下的文字复制到hosts文件里面,保存,注意不修改原来的文件内容,只是附加这些内容:


203.208.46.146 www.google.com

74.125.113.121 developer.android.com

203.208.46.146 dl.google.com-+

203.208.46.146 dl-ssl.google.com



讲解下原理:在hosts文件里面加入这些内容为什么就会加快下载速度呢?大家都知道每个网站都对应一个IP地址,那么咱们打开域名,比如www.baidu.com的时候,会先到DNS服务器解析成IP地址,然后再去访问的。那咱们在hosts里面加入了Android SDK获取更新链接和下载更新链接的网址以及对应的IP地址,目的就是省去了DNS解析的这个步骤,于是节约了时间,也加快了下载速度。



修改一下http请求方式,改为强制http请求,而非https请求,原理是减少了数据量的传输,这样也会加快下载速度。打开Android SDK Manager,在Tools下的 Options 里面,有一项 Force https://..sources to be fetched using http://...将这一项勾选上,就可以提高下载速度了。








STEP2:






          现在的Eclipse的Android版本都已经集成了ADT(Android Developer Tools)。不再介绍怎么集成ADT了。






          启动SDK manager 下载相应Android版本的platform








          

android Retrofit下载大文件 androidfilehost下载教程_源文件



相应的class文件:



android Retrofit下载大文件 androidfilehost下载教程_源文件_02






也可以在platform的Android.jar文件,使用winar查看:



android Retrofit下载大文件 androidfilehost下载教程_源文件_03

==》

android Retrofit下载大文件 androidfilehost下载教程_源文件_04




STEP3:


          


          下载安装Android source文件,即Android源文件,即图示打勾的文件,其实是framework的源码。




android Retrofit下载大文件 androidfilehost下载教程_Android_05


下载完成后,就可以看到sdk的source目录下,已经包含了相关的framework源文件(java文件)。


android Retrofit下载大文件 androidfilehost下载教程_源文件_06




STEP  4:


假如我们使用的是eclipse工具开发android,按着F3进入要查看framework源代码的类,会弹出如下图:


android Retrofit下载大文件 androidfilehost下载教程_源文件_07


点击上图所圈按钮,选择我们上面下载的framework源文件夹,如下图:


android Retrofit下载大文件 androidfilehost下载教程_下载速度_08

android Retrofit下载大文件 androidfilehost下载教程_Android_09


  点击确定,按F3(也可以是ctrl+鼠标左键)就可以进去相应framework源码了:


android Retrofit下载大文件 androidfilehost下载教程_Android_10