The zipoutputstream tag has no wiki summary.
9
votes
4answers
637 views
How can I avoid mutable variables in Scala when using ZipInputStreams and ZipOutpuStreams?
I'm trying to read a zip file, check that it has some required files, and then write all valid files out to another zip file. The basic introduction to java.util.zip has a lot of Java-isms and I'd ...
2
votes
2answers
2k views
Zip subfolders using ZipOutputStream
ZipOutputStream only zips files in a folder. I want to zip subfolders also. How can I achieve this?
1
vote
1answer
107 views
Java - Zip output stream dynamic buffer size
I'm working on application that takes files from one zip and put them in the other, its fine with files but if there is a dir in the source zip it fail with the following exception:
Exception in ...
1
vote
4answers
75 views
Way to close specific output streams
Do you think this code close correctly the output stream entry ? Knowing that this is not the same type of output stream.
OutputStream out = new JarOutputStream(new FileInputstrem(fileName));
...
1
vote
2answers
90 views
Java ZipOutputStream only deflate certain files / deflate filter
This is a two part question, really.
Preface: I use WinRAR to compress files. It gives you the option of only compressing certain files. I can filter by file extension so that, say, JPEG files are ...
1
vote
2answers
449 views
Android append files to a zip file without having to re-write the entire zip file?
How can I append files to an existing zip file? I already have the code that can create a zip file and it works great except for one big problem. The way it works now, the user takes a bunch of ...
0
votes
0answers
124 views
Android ZipOutputStream Stored and Boot Animation
I'm writing an app to create boot animations. So I need the folder to be an uncompressed zip, and the only way I've found to do that is via ZipOutputStream. This is how I'm entering the settings for ...
0
votes
1answer
113 views
Is there a way in Java to preserve Created and Accessed attributes of a file when are added to a zip archive?
I could handle the Modified (lastModified) attribute, meaning in the archive I could preserve the Modified attribute of the file.
Here is a sample:
ZipOutputStream out = new ZipOutputStream(new ...
0
votes
1answer
170 views
.war file created using ZipOutputStream fails to deploy
I am reading a .war file and after reading it into a ZipInputStream , i edit the web.xml and add weblogic.xml - and then transfer all this into ZipOutputStream , which i write as the final output.war ...
0
votes
4answers
525 views
Error opening zip file created using java
I created a small application to read some files from the disk and zip it using java.util.zip.ZipOutputStream. It is successfully creating the zip file. But in windows when i try to open it / extract ...