0
votes
1answer
27 views
boost filtering_istream gzip_decompressor uncompressed file size
I am using the boost filtering stream object to read gzipped files. Works great!
I would like to display a progress bar for the amount of the file that has been processed. I need …
1
vote
1answer
26 views
GZIP Compression causing web page expiration
I have implemented GZIP compression on a few of my ASP.NET pages, using a class that inherits from System.Web.UI.Page, and implementing the OnLoad method to do the compression, lik …
3
votes
3answers
49 views
How do I get the InputStream of decompressed data from an InputStream of GZIPed data?
I call a service which returns a gzipped file. I have the data as an InputStream (courtesy of javax.activation.DataHandler.getInputStream();) from the response.
What I would like …
2
votes
5answers
101 views
How to ‘minify’ Javascript code
JQuery has two versions for download, one is Production (19KB, Minified and Gzipped), and the other is Development (120KB, Uncompressed Code).
Now the compact 19kb version, if you …
0
votes
2answers
23 views
How to Decompress nested GZip (TGZ) files in C#
I am receiving a TGZ file that will contain one plain text file along with possibly one or more nested TGZ files. I have figured out how to decompress the main TGZ file and read t …
0
votes
3answers
69 views
Compress data before storage on Google App Engine
I im trying to store 30 second user mp3 recordings as Blobs in my app engine data store. However, in order to enable this feature (App Engine has a 1MB limit per upload) and to kee …
2
votes
2answers
58 views
WCF GZip Compression Request/Response Processing
How do I get a WCF client to process server responses which have been GZipped or Deflated by IIS?
On IIS, I've followed the instructions here on how to make IIS 6 gzip all respons …
0
votes
1answer
24 views
how to use gzip in classic ASP
Dear experts,
I would like to use GZIP compression in classic ASP.I don't know the code for the same.Please help me what line of code should i put to use GZIP compression in class …
0
votes
2answers
77 views
Unzipping part of a .gz file using python
So here's the problem. I have sample.gz file which is roughly 60KB in size. I want to decompress the first 2000 bytes off this file. I am running into CRC check failed error cuz I …
0
votes
5answers
90 views
Get uncompressed size of a .gz file in python
Using gzip, tell() returns the offset in the uncompressed file.
In order to show a progress bar, I want to know the original (uncompressed) size of the file.
Is there an easy way t …
0
votes
0answers
30 views
Problem with GZIP JSON AJAX response
Hello,
I am facing a problem, while encoding the response that I send back for an AJAX request, using GZIP. Can anyone give me some pointers on this please?
There is an AJAX req …
0
votes
2answers
96 views
Data compression for ADO.NET data services
I have an ADO.NET data service exposed by a .NET app (not IIS) which is consumed by a .NET client app. Some calls to this data service return large amounts of data.
I'd like to co …
0
votes
2answers
57 views
Unzip part of a file using python gzip module
Hi,
I am trying to unzip a gzipped file in Python using the gzip module. The pre-condition is that, I get 160 bytesof data at a time, and I need to unzip it before I request for t …
0
votes
1answer
37 views
Convert gzipped data fetched by urllib2 to HTML
I currently use mechanize to read gzipped web page as below:
br = mechanize.Browser()
br.set_handle_gzip(True)
response = br.open(url)
data = response.read()
I wonder how to dec …
2
votes
1answer
56 views
How to process compressed data in Java
I have some data which takes up more than 50MB in an uncompressed file, but compresses down to less than half a MB using gzip.
Most of this is numerical data. I'm trying to figur …
