Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
3k views

JavaScript: Decompress / inflate /unzip /ungzip strings

I'm looking for JavaScript implementation of string inflating algorithms. I want to compress on the server side (Java), and decompress on the client side (JavaScript). I've found: unzip strings in ...
4
votes
1answer
408 views

Decoding a compressed short string; uncertain on compression used - Updated

I have a program that is compressing a string in an unknown way. I know a few inputs and the output produced, but I am not sure what is being used to compress the string. Here are my examples. (just ...
3
votes
2answers
205 views

Why the result of GZip algorithm is not same in Android and .Net?

Why the result of GZip algorithm is not same in Android and .Net? My code in android: public static String compressString(String str) { String str1 = null; ByteArrayOutputStream bos = ...
3
votes
5answers
526 views

Detecting File Compression

I have to read some data stored by a third party application in an Acess 2000 database. The vendor is no longer around to ask questions. One table contains image data that appears to be compressed - ...
2
votes
2answers
41 views

Is there a way to decompress a javascript file?

I have a js where the contents look like this: HTTP/1.1 200 OK Date: Fri, 02 Dec 2011 03:40:37 GMT Server: Apache/2.2.3 (CentOS) Vary: Accept-Encoding Last-Modified: Fri, 12 Jun 2011 02:36:40 GMT ...
2
votes
1answer
113 views

Decompress tar file into directory

I'm trying to decompress a tar file into a directory, but have no idea how. I can extract it to the same directory as the tar file, but not into another folder. $filename = "homedir.tar"; exec("tar ...
2
votes
3answers
198 views

Decompress a Stream

I'm trying to decompress a stream, using a GZipStream and BinaryStream, but I'm failing. Can you help me? public static LicenseOwnerRoot GetLicenseFromStream(Stream stream) { using ...
2
votes
3answers
186 views

Any theoretical limit to compression?

Imagine that you had all the supercomputers in the world at your disposal for the next 10 years. Your task was to compress 10 full-length movies losslessly as much as possible. Another criteria was ...
2
votes
3answers
2k views

How to read or parse MHTML (.mht) files in java

I need to mine the content of most of known document files like: pdf html doc/docx etc. For most of these file formats I am planning to use: http://tika.apache.org/ But as of now Tika does not ...
2
votes
1answer
1k views

GZipStream and decompression

I have code that should do the compression: FileStream fs = new FileStream("g:\\gj.txt", FileMode.Open); FileStream fd = new FileStream("g:\\gj.zip", FileMode.Create); ...
2
votes
3answers
2k views

Decompressing a .bz2 file in Python

So, this is a seemingly simple question, but I'm apparently very very dull. I have a little script that downloads all the .bz2 files from a webpage, but for some reason the decompressing of that file ...
2
votes
2answers
3k views

How to use ICSharpCode.ZipLib with stream?

I'm very sorry for the conservative title and my question itself,but I'm lost. The samples provided with ICsharpCode.ZipLib doesn't include what I'm searching for. I want to decompress a byte[] by ...
1
vote
0answers
37 views

decompile/extract microsoft agent?

I'm looking for a way to decompress or decompile a microsoft agent. for example the merlin agent I'd like to extract the animations/images. best way i've found so far is. recording my screen with a ...
1
vote
2answers
881 views

Compressed SWF format not supported/cws2fws issue

I am trying to convert .swf to a .flv file using ffmpeg. When I got that error, I searched around and found that I should use cws2fws to somehow decompress the .swf file so that it can be converted by ...
1
vote
2answers
392 views

Fiddler doesn't decompress gzip responses

I use Fiddler to debug my application. Whenever the response is compressed by server, instead of decompressed response, Fiddler shows unreadable binary data: /* Response to my request (POST) */ ...
1
vote
1answer
172 views

Magick++ Compressing and Decompressing files

I've found the compressType()-Method of the Image class in ImageMagick Magick++. I searched for examples how to use it, but there isn't much of information about that. Can someone give me an example ...
1
vote
4answers
1k views

ZLIB Decompression - Client Side

I am receiving data as an "ZLIB" compressed inputstream. Using Javascript/Ajax/JQuery, I need to uncompress it on the client side. Is there a way to do so? Please help. I already have this working ...
1
vote
1answer
212 views

django multiwidget subclass not calling decompress()

I am trying to implement a MultiValueField for IP Adress/Domain Name entries. It works as expected for entering data. My Problem is that if I want to display the form bound to specific data, the IP ...
1
vote
2answers
253 views

Compress Python objects before saving to cache

What's the fast method to compress Python objects (list, dictionary, string, etc) before saving them to cache and decompress after read from cache? I'm using Django and I hope to add ...
1
vote
1answer
432 views

How to unzip files in blackberry

I'm developing an app that manages a file zip with directories and files. I must know how to unzip these files in order to create in local the same structure as in the zip file. Thanks in advance :) ...
1
vote
0answers
320 views

RAR Decompress on iPhone Device

Has anyone found a solution to decompressing RAR files on iPhone (not Jailbroken)? It would be great if there was a library similar to libz. I did not find anything official from RARlab. Anyone ...
1
vote
2answers
4k views

SharpZipLib ~ How to extract specific files from a zip

Ok, I have a list of files (SourceFile objects which just contain the filename only) then I want to pull those specific files out of a zip and dump them into a temp directory so I can distribute ...
0
votes
1answer
76 views

Compressing and decompressing streams

I found this article about simple proxy server implemented in JAVA: http://www.java2s.com/Code/Java/Network-Protocol/Asimpleproxyserver.htm The code simply gets some stream from the client, after ...
0
votes
1answer
50 views

Java - edit(unpack/pack) external jar at runtime?

I am developing a program that automatically modifies a jar file with already obtained class files(I am modding Minecraft automatically, to be exact). This would involve unpacking the jar into a ...
0
votes
0answers
139 views

Decompress Gzip and Chunked HTTP response

Hi im making a packet sniffer by using Sharppcap library. the problem is unchunking and gunzipping chunked and gzipped HTTP response. here is a example byte array that needs to be unchunked and ...
0
votes
3answers
412 views

Create new FileStream out of a byte array

I am attempting to create a new FileStream object from a byte array. I'm sure that made no sense at all so I will try to explain in further detail below. Tasks I am completing: 1) Reading the source ...
0
votes
1answer
339 views

SharpZipLib: Decompress .gz from inside .tar file?

I have a .tar file containing multiple compressed .gz files. I have no issue itterating through the .tar file creating each .gz file in a destination directory. I'd like to skip writting the .gz all ...
0
votes
2answers
555 views

How can I easily compress and decompress files using zlib?

How can I easily compress and decompress files using zlib?
0
votes
2answers
379 views

What is the fastest way to extract 1 file from a zip file which contain a lot of file?

I tried the java.util.zip package, it is too slow. Then I found LZMA SDK and 7z jbinding but they are also lacking something. The LZMA SDK does not provide a kind of documentation/tutorial of ...
0
votes
0answers
164 views

java decompressing gz file, stack overflow problem

I am using Java. I have a huge gz files, each has size about 4G. I have to read all the contents of the data but as my data is huge, I don't want to decompress the files but work with the compressed ...
0
votes
3answers
487 views

zLib inflate has empty result in some cases

My program processes PDF files and reads some streams out of them. There are also FlateEncoded streams in there. I use the "inflate()" method of zlib to decompress them. This usually works really ...
0
votes
1answer
362 views

how to import/export dll and use its function

I am developing a project. I want to include a particular function from 7zip software to decompress data. Its a kinda exporting a particular function from 7zip software to my project. Should I do ...
0
votes
1answer
454 views

compressed file format for Iphone

i am new to iPhone i want to ask that what is the compressed file format which is supported on iPhone. Also how can extract this file programmatically.
0
votes
6answers
2k views

decompress .gz file in batch

I have 100 of .gz files which I need to de-compress. I have couple of questions a) I am using the code given at http://www.roseindia.net/java/beginners/JavaUncompress.shtml to decompress the .gz ...
0
votes
5answers
318 views

How to decompress a file in fortran77?

I have a compressed file. Let's ignore the tar command because I'm not sure it is compressed with that. All I know is that it is compressed in fortran77 and that is what I should use to decompress it. ...
0
votes
2answers
61 views

Is there a command in Fortran77 or later that decompresses a file?

I have a file that is compressed and I want to decompress it. Do you know if there is a command or do I need to follow another path?
0
votes
1answer
869 views

#ZipLib error while decompressing GZip

I'm getting this error while trying to decompress some GZ files with #ZipLib 0.85.5 Those file are not corrupted, I'm able to decompress it correctly using 7-Zip. ...
0
votes
2answers
444 views

uncompress .Z file in C

Can someone point me to a public domain (or MIT- or BSD-license) library for decompressing .Z files in ANSI C? Thanks!
-2
votes
1answer
454 views

c# gzipstream decompression is more like depression

final working code is here.... public static byte[] ToGZip( this string source ) { using( var stream = new MemoryStream( ) ) { using( var compressor = new ...