在导入Maven项目时,有时会出现“Error:java 读取xxxx.jar时出错;error in opening zip file”的错误。这通常是由于以下几个原因导致的: Maven本地仓库中的jar包损坏或缺失。 存在jar包冲突。为了解决这个问题,你可以尝试以下方法:方法一:删除Maven本地仓库的jar包并重新下载依赖 打开终端或命令提示符,进入你的Maven...
找到/opt/soft/m2_repo/org/apache/calcite/calcite-core/1.10.0目录,把该目录删除,如下图: 然后在idea中点击maven的install,重新下载jar包 之后再启动项目,就可以了。
[ERROR] 错误:读取 C:\Users\root\.m2\repository\mysql\mysql-connector-java\5.1.24\mysql-connector-java-5.1.24.jar 时出错;error in opening zip file [ERROR] 1 错误 [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [...
肯定是这个jar包坏了,jar的格式是zip。系统装载时会解压它。现在是解压失败。
1、问题描述 2、解决方案 1、问题描述 读取D:\maven_localdb\org\apache\httpcomponents\httpclient\4.5.1\httpclient-4.5.1.jar时出错; error in opening zip file 2、解决方案 进入对应的目录删除掉maven仓库中对应的文件夹,重新导入即可。
Maven Install的时候报如下两个错误。[ERROR] Failure executing javac, but could not parse the error:错误:读取 C:\Documents and Settings\Administrator\.m2\repository\jaxen\jaxen\1.1.4\jaxen-1.1.4.jar 时出错;error in opening zip file 错误:读取 C:\Documents and Settings\...
[ERROR] Failure executing javac, but could not parse the error: [ERROR] 错误: 读取D:\.m2\local\repo\org\wltea\analyzer\2012_u6\analyzer-2012_u6.jar时出错; error in opening zip file 1. 2. 3. 删除仓库中的jar 重新clean install
3 方法三,创建FileItem publicstaticFileItemcreateFileItem(StringfilePath,StringfileName){StringfieldName="file";FileItemFactoryfactory=newDiskFileItemFactory(16,null);FileItemitem=factory.createItem(fieldName,"text/plain",false,fileName);Filenewfile=newFile(filePath);intbytesRead=0;byte[]buffer=new...
下载的安装包解压后有个readme.txt文档,内附详细说明。此外数据库驱动路径在安装路径下dmdbms/drivers ...
问题背景 在使用IDEA本地启动项目的时候,报错有一个jar找不到,打不开,但是能够正常打包 解决方案 在报错路径下删除该jar包,使用maven重新导入下载jar 作为程序...