The decompress tag has no wiki summary.
0
votes
3answers
21 views
Extracting BZ2 compressed folder using Python
I am trying to extract a bz2 compressed folder in a specific location.
I can see the data inside by :
handler = bz2.BZ2File(path,'r')
print handler.read()
But I ...
0
votes
0answers
27 views
what's the difference between javascript PACKED and PACKER
I found two difference way to pack javascript file, there's packed and packer.
the encode js file after packed looks like this:
eval(function(p,a,c,k,e,d){..});
and
...
0
votes
1answer
33 views
when does bz2.decompress(rawdata) got an error of “couldn't find end of stream”?
I have checked that the file in my disk is the same as https://github.com/scipy/scipy/blob/master/scipy/misc/face.dat
but when I run this statement ,I have got this error. why ?
scipy.misc.face()
...
0
votes
2answers
109 views
how to link zlib library
Hi I'm using boost and zlib filter to compress and decompress data. on the instruction of boost page, it is saying
if the .cpp file depends on an external library, you'll have to build it from the ...
0
votes
1answer
111 views
How to decompress using JSZip
I trying to send large data from view page to the controller, I need to use one compression technique
so i choose JSZip for compressing the data, iam able to compress the data, but iam unable to ...
0
votes
0answers
107 views
aplib decompression
aP_depack_asm:
; aP_depack_asm(const void *source, void *destination)
_ret$ equ 7*4
_src$ equ 8*4 + 4
_dst$ equ 8*4 + 8
pushad
mov esi, [esp + _src$] ; C calling ...
0
votes
2answers
230 views
Determine the end of H.264 I-frame in RTP stream
I process H.264 RTP stream from an IP-camera. The camera I use splits each I-frame to several NAL units, each of those is splitted to RTP packets (the begin and the end flags determine the dimensions ...
0
votes
0answers
7 views
Where should the receiver 's scheduler be created?
I am trying to decompress the zip file after it is downloaded from the internet, so I registered a receiver in activity B(where the download button located), by using
...
0
votes
2answers
260 views
How to decompress a string in javascript, compressed in C#? [duplicate]
Possible Duplicate:
ZLIB Decompression - Client Side
I'll try to be clear and I'm sorry for my bad english. This is the question:
In my web application i received a string that represent an ...
1
vote
2answers
736 views
Decompress gzip and zlib string in javascript
I want to get compress layer data from tmx file . Who knows libraries for decompress gzip and zlib string in javascript ? I try zlib but it doesn't work for me . Ex , layer data in tmx file is :
...
0
votes
4answers
225 views
How to convert an image string in javascript or jquery?
I have this "little" problem...
In my web app I recieve an xml message from the server that I parse with jquery. In the xml there is an element Image with these attributes: key and value. The value ...
-2
votes
1answer
81 views
How to decompress .zip file(standard zip format) stream into memory also as stream With C? [closed]
First,I'm a ios developer,I have to use C or objective-c,as title, I tried to implement that function in many ways,zlib can't support handle .zip format file、 minizip only support decompress file from ...
0
votes
1answer
248 views
Decompress gzip file to specific directory
What is the gzip equivalent of the following command:
tar xvzf /usr/local/file/file/file.tar.gz -C /usr/local/extract_here
I am trying
gzip -d /usr/local/file/file/file.tar.gz -C ...
-4
votes
2answers
245 views
file without extension after decompressing .gz [closed]
Hi there I tried to extract a .gz archive using several type of extractors (winrar, winzip, 7-zip), but the outcome is always one - file without extension.
Anybody have an idea what is it? Thank you ...
0
votes
0answers
48 views
Android: Decompressing zip file from WCF
I need to decompress a file that read from a webservice. This file is written into a byte array. For now, since this:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
...
0
votes
2answers
65 views
How to decompress RPM file in Java?
Recently, I just wrote an eclipse plugin to auto deploy one specific Java EE application to my tomcat server. During the process, there was a step which needed to decompress RPM file downloaded from ...
3
votes
1answer
2k views
The magic number in GZip header is not correct. Make sure you are passing in a GZip stream.(.exe file)
I want to extract a exe file. The exe file contain some files and folders. When I try to extract the file using winrar it gets extracted but when I am trying to extract the exe file using some ...
1
vote
2answers
285 views
Decompressing gzipstream from
I've made a simple proxy server. Works fine, but not the gzip decompressing:
The magic number is not correct. Be sure .
No error, but the gzipstream won't decompress.
It works as follows:
private ...
3
votes
1answer
83 views
(python) do I use os.path.join on tar.gz files
I have a tar.gz file, and I want to extract a certain directory but not the whole thing, so I use TarFile.getmember('foo/bar'). what I want to know is if I really should be using ...
1
vote
0answers
114 views
Does Python's GzipFile class have a default maximum buffer size?
I am attempting to recover/decode a string that has been gzipped and then base64-encoded. Currently, I am using Python's gzip module -- and in particular, the GzipFile class -- to decompress the ...
1
vote
1answer
197 views
How to decompress a PVRTC compressed image format to view it on a PC
I need a texture out of an iphone game whitch is compressed in a PVRTC image format.
I´ve tried the PVRTexTool to decompress it but the image doesnt open in it. The program only opens files with the ...
0
votes
1answer
796 views
How do I expand a compressed tar file in Android 2.2 or higher
Given a compressed tar file (created by gzip) on the SDCard I need to expand/uncompress it within an Android app. The tar file contains pictures, text, and subfolders with files under the subfolders. ...
3
votes
1answer
165 views
decompress single file from archive in android
I have a big archive (zip in my case) with size ~100MB and with ~15000 files in it. I need to QUICKLY extract only one file form this archive.
I tried the next code:
final String zipPath = ...
1
vote
1answer
111 views
decompress multiple files from resource in c
i have a visual c project, where i want to include an archive containing multiple files in a directory structure
i would like to programmatically extract it to somewhere on the disk, using a ...
0
votes
2answers
161 views
why does jpeg_decompress_create crash without error message?
I've a problem with just this sample of code :
struct jpeg_decompress_struct cinfo;
struct jpeg_error_mgr jerr;
cinfo.err = jpeg_std_error(&jerr);
jpeg_create_decompress(&cinfo);
My ...
2
votes
1answer
198 views
Error with decompression/compression error
I have the error while decompressing
"The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the ...
0
votes
0answers
498 views
How to remove invalid characters from base64 string
I am serializing a xml and compress to ToBase64String stores in the database as nvarchar,
while loading decompress the string from 'FromBase64String' throws the error
"The input is not a valid ...
-1
votes
1answer
123 views
Where to start in building an app/system that compresses and decompresses a file
I'm currently developing an application in Java/Android that allows the user to compress and decompress files. At first, I started to study the file size such as:
1Byte = 8Bits
1KB = 1024Byte
1MB = ...
1
vote
1answer
375 views
Libarchive Gem Not Working (RoR)
I'm trying to get libarchive working in my Rails app. Specifically, I need to unzip a file and re-compress its contents as a .CPGZ file. I believe Libarchive is my best bet for this.
However when I ...
-1
votes
2answers
132 views
Java decompressing archive packed by implode method
I need to create some software which works with ZIP archives compressed with very old implode method.
Tried to write decompressor but nothing good happened. Optimized C-code is very hard for me.
...
1
vote
2answers
827 views
How to decompress deflate stream (not gzip) using SharpZipLib?
I am working on an app on Windows Phone and trying to get data from a web server by HTTP GET method, and the content-encoding field in the response indicates that the data was compressed by deflate ...
0
votes
1answer
190 views
Compress and decompress chunk of bytes in inputstream
I am printing a chunk from inputstream by using
int skip = in.skip(1024); //skip first 1024b
int end = in.available(); // remaining size in b
for (int i = skip; i < end; i++) {
//prints ...
1
vote
2answers
1k views
How to unzip an LZMA compressed zip file on Windows Phone 7?
I'm developing a Windows Phone 7 project which uses a local SQLite database. The database is ~40MB uncompressed so I zipped it using maximum compression (Deflate) down to ~20MB. Here's my code ...
2
votes
2answers
689 views
Decompress Rar file in Android
I want to learn how to decompress a .rar file in android. Zip files can be easily decompressed using ZipStream. Is there any similar way for rar files.
1
vote
1answer
2k views
C# Read only first line, using StreamReader of a zipped text file
I am trying to read only the first line of a zipped csv file. I used below code but get the error "The magic number in GZIP header is not correct". Obviously it has to do with the fact that GZIP and ...
0
votes
1answer
660 views
C# decode (decompress) Deflate data of PDF File
I would like to decompress in C# some DeflateCoded data (PDF extracted).
Unfortunately I got every time the exception "Found invalid data while decoding.".
But the data are valid.
private void ...
2
votes
2answers
134 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
...
1
vote
1answer
1k 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
303 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 ...
3
votes
1answer
108 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 ...
3
votes
1answer
2k 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 ...
4
votes
3answers
731 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 = ...
2
votes
2answers
2k 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 ...
3
votes
3answers
951 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 ...
9
votes
3answers
3k 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) */
...
2
votes
3answers
4k 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
717 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 ...
4
votes
2answers
4k views
How can I easily compress and decompress files using zlib?
How can I easily compress and decompress files using zlib?
4
votes
2answers
3k 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 ...
10
votes
6answers
17k 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 ...


