I just wanted to know how can I zip a file on the web using java, of course. I know how to do this for directories on the hard drive, but not for websites:
I found example from SUN site (http://java.sun.com/developer/technicalArticles/Programming/compression/), but it returns BufferedOutputStream. But I would like to get ZipEntry file as InputStream and
Is there any way to have one server call a开发者_高级运维nd execute a script on another server? I have tried ftp_exec(), but the server does not support it. Here is what I am trying to do.
I\'ve written some code that retrives a zip file and unzips it into a directoy. The zip file contains two folders and depending on what folder each file is in, it is unzipped into a folder of that dir
Is it possible to include a .zip file as a resource inside a .net assembly? and if so, how is it done and how do I access it?
Is there a library for creating zip files (the zip file format no开发者_运维技巧t gzip or any other compression format) on-the-fly (so I can start sending the file while it is compressing) for very la
How can I add a file to a folder inside a zip开发者_如何学C file using PHP? For example if I have the zip file:
Would anybody have an explanation as to why DotNetZip would spin its wheels on a file? I have this file, which is copyrighted and non-distributable, that will not be zipped. I can take an earlier vers
I have application to download .zip file from url and convert each file from .zip file into byte array. At the moment I am able to download the file read the .zip file and convert the whole .zip file
Is it possible to process a huge (~3G) file with pure Ruby (1.8) using limit开发者_JAVA技巧ed amount of RAM?Yes, you can use Zlib::GzipReader to process it line by line using #each_line or #each_byte.