The uncompress tag has no wiki summary.
0
votes
1answer
27 views
Issues uncompressing a tar.gz file
I have been trying to uncompress the following file:
sudo wget http://download.oracle.com/otn-pub/java/jdk/7u21-b11/jdk-7u21-linux-x64.tar.gz
with the following:
sudo tar zxvf ...
1
vote
1answer
62 views
Crash when using boost::iostreams
I'm trying to use boost::iostreams(1.53.0) to uncompress a HTTP request body and later process it.
But I get a crash when I run the following code.
try {
using namespace boost::iostreams;
...
0
votes
1answer
62 views
how to dump sql.gz file in to mysql
I have allocated almost all of my space on the production server to my table space
Now i have an compressed dump of around 20gb which is needed to be dumped into mysql
The problem is the server is ...
2
votes
1answer
55 views
Uncompressing a .gz string in C?
I need to uncompress a .gz file (like stuff.txt.gz) that is currently stored in an arbitrarily long string. I've looked quite a bit at zip libraries but nothing has a straight answer.
popen is not ...
0
votes
1answer
151 views
Jpeg too small: How to increase the size of the image
I have got acquainted with the images of the project "Small ESP Game Dataset" due to Luis von Ahn's Research Group at http://www.cs.cmu.edu/~biglou/resources/.
The databasis is fantastic. However, ...
4
votes
2answers
99 views
php uncompress & unpack gives array containing a few (9 in 10309) undefined values
I have a binary data string that i uncompress and unpack into an array using php with the following code (complete code for this php page is included at the bottom of this question):
while ($row = ...
2
votes
0answers
269 views
How to decompress .7z file in android
I want to uncompress .7z file which is getting from the server.
for that, I was added sevenzipjbinding.jar library and its shared library sevenzipjbinding-AllLinux.jar into project libs directory
...
1
vote
1answer
239 views
How to uncompress a tar.gz string
I have a string that is the contents of a tar.gz compress file (the filename would be tar.gz if there was one). It's passed to me in JSON and the string is base64 encoded.
I've managed to decode the ...
1
vote
1answer
92 views
WCF REST service - How to decompress the form data using gzip?
We have a WCF-REST service, the client is sending the data with Content Encoding = gzip and compressing the data in gzip format. However, we are unable to decompress the form data from the request ...
1
vote
2answers
294 views
Implementing an Unzip after download
Hello I have manage to download a file. And now I am using the class from
http://www.jondev.net/articles/Unzipping_Files_with_Android_%28Programmatically%29
So, I would like an advice as to where ...
1
vote
0answers
141 views
Opening ODS file using System.IO.Packaging C#
I want to get the content.xml in *.ods. I know this can be achieve by using the APIs of DotNetZip. Instead, I would like to do this by using the System.IO.Package of microsoft.
Tried the code below ...
0
votes
2answers
1k views
Decode Javascript
I have on my webserver an application from where I encoded/compressed the javascript code long ago. The problem is that I don't got the original source anymore, so I need to decode/decompress the one ...
2
votes
1answer
41 views
Possible to prevent MySQL from renaming key after 'UNCOMPRESS'?
So I'm storing some XML in a table, and using the MySQL 'COMPRESS' function like this:
$query = "SELECT UNCOMPRESS(table_row) FROM database WHERE this = 'that'";
$mysqli = $this->ConnectDB();
...
1
vote
3answers
206 views
What is suitable buffer size for uncompressing large gzip files in gzopen using php?
function uncompress($srcName, $dstName) {
$sfp = gzopen($srcName, "rb");
$dstName = str_replace('.gz', '', $dstName);
$fp = fopen($dstName, "w");
fseek($FileOpen, -4, SEEK_END);
...
0
votes
1answer
371 views
How can I extract or uncompress gzip file using php?
function uncompress($srcName, $dstName) {
$sfp = gzopen($srcName, "rb");
$fp = fopen($dstName, "w");
while ($string = gzread($sfp, 4096)) {
fwrite($fp, $string, strlen($string));
...
1
vote
1answer
415 views
How to find uncompressed size of ionic zip file
I have a zip file compressed using Ionic zip. Before extracting I need to verify the available disk space. But how do I find the uncompressed size before hand? Is there any header information in the ...
0
votes
0answers
883 views
Zlib uncompress returns Z_DATA_ERROR
I am working on a client server application, where client compresses a 2MB data sends to the server, server receives the data uncompresses it and writes it to a file.
For some packets uncompression ...
0
votes
2answers
1k views
ZLIB uncompress
I've coded a small application that should uncompress data encoded in the gzip/deflate format.
In order to accomplish this,I'm using the ZLIB library, using the uncompress function.
The problem is ...
3
votes
1answer
553 views
Unzipping a multi-part zip file volumes using Java
I need to unzip a set of files that are a zip archive. This isn't a set of zip files, this is one big zip file that has been broken up into multiple zip files based on a size requirement.
For ...
4
votes
1answer
792 views
how to unpack resources.pak from google chrome?
There are bunch of interesting files accessible via chrome://resources/* using google chrome.
On linux That the content is in /opt/google/chrome/resources.pak. I know I can get the whole sources from ...
0
votes
2answers
361 views
Is there a way to uncompress .Z files using php?
Is there a way to uncompress .Z files using php?... kind regards J
1
vote
1answer
433 views
Issue with Uncompressing the .7z file in the Android evn
Getting "system.entrypointnotfoundexception: loadlibrary" While trying to use SevenZipLib.dll to uncompress the .7z file containing media contents/file in the Android evn.
Context:
-The whole program ...
1
vote
1answer
489 views
PHP gzuncompress with file read and write errors
I have a function that keeps track of events that happen through out the script. In an effort to use my resources effectively, I decided to compress the data that it generates. However, I keep getting ...
0
votes
1answer
633 views
Uncompress .Z file
I have a file N225.e00.Z.zip. I can unzip it and hvae the file N225.e00.Z, and am stuck there. Using Python 2.6
I've been looking and tried 3 different ways to unzip this with no success.
1)
...
0
votes
1answer
793 views
PHP: Uncompressing gzcompressed file with gzuncompress and fopen
I am trying to uncompress a binary file and then uncompress it to test whether the compresssion is working.
However the 'uncompressed' file has the same data as the 'compressed' file. As though the ...
0
votes
2answers
536 views
How to Convert Compressed Image File Formats to Uncompressed Image File Formats in PHP
I have a question about image compression. Does anyone know how to uncompress images such as jpg, png and such into file formats such as tiff or bmp and vice versa via PHP or any other scripting ...
0
votes
1answer
326 views
unzip SOAP message with x-code
In order to improve the client/server behaviour, I'm looking for adapt my iphone client code to proceed ziped responses.
The server adapt the SOAP response ziped.
I was looking how to uncompress the ...
0
votes
1answer
321 views
Uncompress in .NET Compact Framework 1.0
I need a library I can use to uncompress a collection of files (something similar to unzipping). Any compression format will do. So far I have failed to find any zip libraries that meet my ...
2
votes
3answers
1k views
How to compress and uncompress JPEG using lossless method?
How to compress and uncompress JPEG using lossless method?
1
vote
2answers
360 views
Working with DICOM Compression
How is the flux working with DICOM compression? Do I use any compression algorithm as Deflate for example? And then when I want to load the Image, I uncompress? So If I compress a Dicom file. If I try ...
1
vote
3answers
507 views
Is possible keeps the contents of all files inside within a compressed tar.gz, like a stream?
I have a problem to resolve.
I have tar.gz compressed file, and I wouldLike keep the contents like a stream, like Zipfile permits with the method zipFile.getInputStream(zipEntry). I have Implemented ...
0
votes
0answers
4k views
java.io.EOFException: Unexpected end of ZLIB input stream
HI guys,
testing my tar.gz extraction tool, i found thrown the exception:
java.io.EOFException: Unexpected end of ZLIB input stream
at java.util.zip.InflaterInputStream.fill(Unknown Source)
...
0
votes
1answer
271 views
Virus database main.cvd uncompression
In my previous question, I asked where I can get a hex virus signature database, and the answer was: ClamAV. So I downloaded the "main.cvd" database and was told that it was a compressed tar file. I ...
0
votes
1answer
306 views
Gzip and Bzip uncompress with PHP
How to identify, with PHP, if a compress file has more than one file compressed?
I got it with ZIP compress, but I didn't with Gzip and Bzip.
Thanks!
1
vote
1answer
2k views
Extracting a file with JUnrar
I asked a question earlier about extracting RAR archives in Java and someone pointed me to JUnrar. The official site is down but it seems to be quite widely used as I found a lot of discussions about ...
0
votes
2answers
148 views
jmeter proxy: how to unzip traffic during / before recording
the http traffic I'm interested in to record is gzipped (the client sends zipped data to the server). The result is recorded binary traffic which cannot be easy modified. It's very difficult to modify ...
0
votes
1answer
375 views
uncompress zlib network packet from hex
I am reversing some kind of protocol and it looks like it is using zlib compression, the current packet is :
...
2
votes
10answers
10k views
How to extract a rar file in C#?
I want to extract .rar files using cmd shell so I wrote this code:
string commandLine = @"c:\progra~1\winrar\winrar e c:\download\TestedU.rar c:\download";
ProcessStartInfo PSI = new ...
3
votes
1answer
6k views
Uncompress GZIPed HTTP Response in Java
I'm trying to uncompress a GZIPed HTTP Response by using GZIPInputStream. However I always have the same exception when I try to read the stream : java.util.zip.ZipException: invalid bit length repeat
...
6
votes
4answers
5k views
How to unpack the contents of a JavaScript file?
You know how those packed js files look like, right?
eval(function(p,a,c,k,e,d){ ... } ('obfuscated-string'.split('|'),0,{}))
It just so happens to be that i have to tweak some large legacy code ...
9
votes
1answer
4k views
Uncompress BZIP2 archive
I can uncompress zip, gzip, and rar files, but I also need to uncompress bzip2 files as well as unarchive them (.tar). I haven't come across a good library to use.
I am using Java along with Maven ...
2
votes
2answers
2k views
Gracefully convert .rar to .zip using Python
I'm currently making system call to "unrar and zip" commands. It interrupts and requires me to enter password while encounter password propected archives.
Is it possible to let it run and return a ...
2
votes
2answers
755 views
zlib iPhone - files get crap in beginning
I've got a couple of .tgz-files in my bundle that I want to uncompress and write to file. I've got it working - sort of. The problem is that the file written gets 512 bytes of crap data in front of ...
1
vote
2answers
4k views
Downloading the gzip file and Uncompressing to retrieve Content using IPHONE SDK on iphone and ipod touch devices
I had the following questions related to downloading the file from the server.
a) Is it possible to download directly the GZIP (Compressed)file to the iphone device using IPHONE SDK.
b) If the ...


