Android SDkの更新問題を解決する


Android SDKのダウンロードと更新に失敗した解決策!
これはCSDNから転載したものです.
 
最近のダウンロード更新SDKでは、次のようなエラーが発生します.
 
 
dl-ssl.google.comは大陸で強くなって、偉大な天朝は本当に人を生かさないで、解決方法はC:WindowsSystem 32driversetchostsファイルを修正することです.行を追加:
 
74.125.237.1       dl-ssl.google.com

 
 
ここで注意しなければならないのはhostsファイルが読み取り専用で、私たちは修正する権限がありません.hostsファイルをデスクトップまたは他の場所にコピーし、修正する必要があります.コードは以下の通りです.
 
 
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#	127.0.0.1       localhost
#	::1             localhost
// ,        
74.125.237.1       dl-ssl.google.com

 
 
そして保存して、変更したhostsファイルをC:WindowsSystem 32driversetcディレクトリにコピーし、ファイルを置き換えれば良い!!!SDKを再ダウンロードすると成功します.次の図です.
 
 
へっへっへっへっへっへっへっへっへっへっへっへっへっへっへっへっへっへっへっ
PS:補足すると、macまたはLinuxでは、hostsファイルの場所は/etc/hostsであり、sudo vim/etc/hostsを使用して編集することができます.