react native Exception in thread "main" java.util.zip.ZipException: error in opening zip file

转自:http://www.jb51.cc/article/p-onuasaoe-pm.html

1.问题

D:\rnworkspace\Hello>React-native run-Android
JS server already running.
Building and installing the app on the device (cd android && gradlew.bat install
Debug)…
Downloading https://services.gradle.org/distributions/gradle-2.4-all.zip
……………………………………………………………………..
……………………………..
Unzipping C:\Users\ltn.gradle\wrapper\dists\gradle-2.4-all\6r4uqcc6ovnq6ac6s0tx
zcpc0\gradle-2.4-all.zip to C:\Users\ltn.gradle\wrapper\dists\gradle-2.4-all\6r
4uqcc6ovnq6ac6s0txzcpc0
Exception in thread “main” java.util.zip.ZipException: error in opening zip file

at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:215)
    at java.util.zip.ZipFile.<init>(ZipFile.java:145)
    at java.util.zip.ZipFile.<init>(ZipFile.java:159)
    at org.gradle.wrapper.Install.unzip(Install.java:159)
    at org.gradle.wrapper.Install.access$500(Install.java:26)
    at org.gradle.wrapper.Install$1.call(Install.java:69)
    at org.gradle.wrapper.Install$1.call(Install.java:46)
    at org.gradle.wrapper.ExclusiveFileAccessManager.access(ExclusiveFileAcc

essManager.java:65)
at org.gradle.wrapper.Install.createDist(Install.java:46)
at org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:126)
at org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:61)
Could not install the app on the device,read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/android-setup.html

(node:5276) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejec

tion id: 2): TypeError: Cannot read property ‘message’ of undefined

2.解决

这问题原因是在你创建工程gradle-2.4-all包下载不完全或者没有下载所致。
1.你可以重新创建工程。
2.下载http://pan.baidu.com/s/1b2Vb2Y包,放在C:\Users\xxxx.gradle\wrapper\dists\gradle-2.4-all下,重新运行

相关文章

react 中的高阶组件主要是对于 hooks 之前的类组件来说的,如...
我们上一节了解了组件的更新机制,但是只是停留在表层上,例...
我们上一节了解了 react 的虚拟 dom 的格式,如何把虚拟 dom...
react 本身提供了克隆组件的方法,但是平时开发中可能很少使...
mobx 是一个简单可扩展的状态管理库,中文官网链接。小编在接...
我们在平常的开发中不可避免的会有很多列表渲染逻辑,在 pc ...