-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
invalid CEN header (bad signature) #114
Comments
Do you have the offending zip file for me to test? |
Hi @slacrey , I'm reproducing the same error using allure 2.13.0. Did you manage to solve it? |
@david-espinosa do you happen to have an offending file to test the issue? |
Hey @toomasr I don't get your point, this errors raises when I try to create the allure-report from a junit xml file. |
From the initial post I see that the error appears on expanding/unzipping an archive. I'm trying to find an archive that produces this exception. Or am I missing something? |
Hello.
I am using this library to unzip a file in a desktop application but I have an error with this stacktrace. The problem occurs sometimes and I don't found any cause or solution.
org.zeroturnaround.zip.ZipException: java.util.zip.ZipException: invalid CEN header (bad signature)
Caused by: java.util.zip.ZipException: invalid CEN header (bad signature)
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.(ZipFile.java:225)
at java.util.zip.ZipFile.(ZipFile.java:279)
at org.zeroturnaround.zip.ZipUtil.iterate(ZipUtil.java:499)
... 24 more
This is the call to unzip the file ZipUtil.unpack(file, outputDir)
This is the version of the library in my pom.xml file.
org.zeroturnaround zt-zip 1.13ant like this:
Project project = new Project();
Expand expand = new Expand();
expand.setProject(project);
expand.setSrc(new File(sourceZip));
expand.setOverwrite(false);
expand.setDest(new File(destDir));
expand.setEncoding(encoding);
expand.execute();
is ok????
The text was updated successfully, but these errors were encountered: