Android Studio更新之后Re-download dependencies and sync project (requires network)问题

Android Studio更新之后报错
Error:Failed to open zip file.
Gradle’s dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
Re-download dependencies and sync project (requires network)
Re-download dependencies and sync project (requires network)
如图
Android Studio更新之后Re-download dependencies and sync project (requires network)问题

解决办法
错误解读:产生错误的原因是因为没有下载到项目对应的gradle版本,例如项目使用了3.3版本的gradle,可是本地只有2.14.1版本,或者下载3.3出错,则会报这个问题。
1、解决办法1:修改项目更换gradle版本:project-gradle-wrapper-gradle-wrapper.properties,修改gradle配置信息。distributionUrl=https://services.gradle.org/distributions/gradle-3.3-all.zip改为distributionUrl=https://services.gradle.org/distributions/gradle-2.14.1-all.zip。然后Gradle-refresh all Gradle Projects即可。
Android Studio更新之后Re-download dependencies and sync project (requires network)问题

2、解决办法2:手动下载所需要的gradle,并放到gradle目录。
链接:http://pan.baidu.com/s/1boUfS5L 密码:gxkr
下载对应gradle之后放到对应目录,然后Gradle-refresh all Gradle Projects即可。
Android Studio更新之后Re-download dependencies and sync project (requires network)问题