Tagged Questions
The zipinputstream tag has no wiki summary.
9
votes
4answers
617 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
1answer
814 views
How to speed up unzipping time in Android?
Unzipping files on android seems to be dreadfully slow. At first I thought this was just the emulator but it appears to be the same on the phone. I've tried different compression levels, and ...
2
votes
3answers
608 views
extracting contents of ZipFile entries when read from byte[] (Java)
I have a zip file whose contents are presented as byte[] but the original file object is not accessible. I want to read the contents of each of the entries. I am able to create a ZipInputStream from a ...
1
vote
1answer
58 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
1answer
35 views
Returning ZipInputStream as a Jax-RS Response object
I am trying to return a ZipInputStream containing two different outputstreams as a javax.ws.rs.core.Response Stream. When I make a web service call to retrieve the stream, I notice that I get an empty ...
1
vote
1answer
188 views
ZipInputStream Throws Illegalargument exception for diacritics
If I run the below program with the zip file which has some files with diacritic characters (e.g 1-2GF-969##JÖN.pdf) , I get IllegalArgumentException.
My application has to support all languages. So, ...
1
vote
1answer
870 views
Getting document.xml from a docx file using ZipInputStream
I have a inputStream of a docx file and I need to get hold of the document.xml which lies inside the docx.
I am using ZipInputStream to read my stream and my code is something like
...
1
vote
2answers
602 views
Randomly accessing a compressed file without using ZipFile (since ZipFile has a major bug)
I know, I know, who would want to compress or uncompressed large files in java. Completely unreasonable. For the moment suspend disbelief and assume I have a good reason for uncompressing a large zip ...
1
vote
1answer
201 views
What's with Ruby's ZipInputStream screwing up my line endings?
I'd be happy with ZipInputStream taking indecent liberties with the line endings that are stored in a file if it would at least get them right for the platform I'm storing the file on. Unfortunately, ...
0
votes
0answers
44 views
Working with ZipInputStream
I'm currently trying to create a download manager (DLManager) that you can submit links to online files and it keeps track of the progress of all the downloads. I works great for normal files but I ...
0
votes
3answers
153 views
How can I convert ZipInputStream to InputStream?
I have code, where ZipInputSream is converted to byte[], but I don't know how I can convert that to inputstream.
private void convertStream(String encoding, ZipInputStream in) throws IOException,
...
0
votes
1answer
100 views
The size of zipInputStream is always 512 bytes?
private byte[] loadClassData(String className) {
ZipInputStream in = null;
FileInputStream fis = null;
try {
fis = new FileInputStream(jarPath);
in = new ...
0
votes
2answers
313 views
Android: Faster way to read/write a ZipInputStream?
I am currently writing an application that reads a zip file in my assets folder which contains a bunch of images. I am using the ZipInputStream API to read the contents and then writing each file to ...
0
votes
1answer
197 views
Getting XML data from the byteArray of a zipFile
I'm writing a simple program that retrieves XML data from an object, and parses it dynamically, based on user criteria. I am having trouble getting the XML data from the object, due to the format it ...
0
votes
2answers
369 views
unzip archive with subfolders in java?
I am trying to unzip an archive (test.zip) containing a subfolder with some png images:
test.zip
| -> images
| -> a.png
| -> b.png
Here is what I do:
public static ...
0
votes
1answer
154 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
1answer
384 views
how to read ZipInputStream into CharArrayReader
Right now i am developing an application using Google App Engine (GAE). GAE doesnt allow me to create temp folder for me to store my zipfile and read from it. The only way is to read it from memory. ...
0
votes
1answer
478 views
How to reuse / reset an ZipInputStream?
I want to reset the ZipInputStream (ie back to the start position) in order to read certain files in order. How do I do that? I am so stucked...
ZipEntry entry;
ZipInputStream input = ...
0
votes
2answers
567 views
System.IOException when opening file with File.OpenRead
I get the following exception when I open a file for unzipping it's contents. It happens when I have the file selected in Windows Explorer, or mouse over it showing a tooltip.
System.IO.IOException ...
0
votes
1answer
183 views
How do I read multiple ZipEntries through a single InputStream
I have to pass an InputStream as a parameter to a 3rd party library, which will read the complete contents from the InputStream and do its job.
My problem is, some of my files are Zip files - with ...
0
votes
4answers
645 views
Problem opening/downloading zip-file after decompression (Java/ZipInputStream)
The background
Currently, I try to get a zip-file through a HTTP-servlet with a HTTP-request. The received zip-file contains three different files. These files contain information I want to filter out ...
0
votes
0answers
1k views
Getting IOException Push back buffer is full while trying to unzip a String value using ZipInputStream
I am trying to unzip a String value.
But I am getting a java.io.IOException: Push back buffer is full
public byte[] unzipArray(String stringToUnzip) {
byte[] inputByteArray = ...
-1
votes
1answer
256 views
Download zip file and save it in sdcard
I have an application to download zip file and save to sdcard. But I get zipentry=null while reading inputstream, it doesn't enter the while block. Could anyone help me in solving this problem, ...