zip tag

6 questions


1 answers
258 views
0
I want to read the contents of the file and use node-gzip.

I am thinking of compressing the file with JavaScript and transferring it to the server in node-gzip.On this page, as shown below (see ), there is a description of the text as input.(Here's 'Hello Wor...

1 years ago

1 answers
59 views
0
Library that can gzip in a smaller memory environment (e.g. 10KB RAM)

Library with gzip compression in a small memory environment (e.g. RAM 10KB)I would like to know what kind of things are available. Objective: To reduce the size of data when transmitting data from the...

1 years ago

1 answers
99 views
0
Responding gzip using zlib in NodeJS is not compressed

Using Node.js, we returned the gzip compressed html file as a response in the following form: consthoge='huga';res.setHeader('Content-Disposition', 'attachment; filename=test.html.gz');res.setHeader('...

1 years ago

1 answers
84 views
0
open error in raise OSError('Not agzipped file(%r)'%magic)gzip

sample code in the book Deep Learning from scratch$python mnist.pyWhen I ran it, I got the following error in the gzip part.The execution environment is Anaoconda3(python3.5), windows7.Traceback (most...

1 years ago

1 answers
67 views
0
I'm curious about the algorithm that processes compressed files in Java

Hello, everyone~I'm curious about the algorithm or process of decompressing Java~ Compressed to a ZIP file, when uncompressed from MultipartFile or File Typically, you will create a new file. (For man...

1 years ago

1 answers
69 views
0
How can I restore it from the zip?

I use the zip like thislist1 = ['a', 'b', 'c', 'd']list2 = [1, 2, 3, 4]result = zip(list1, list2) #[('a', 1), ('b', 2), ('c', 3), ('d', 4)]The opposite of the zip[('a', 1), ('b', 2), ('c', 3), ('d', 4...


© 2024 OneMinuteCode. All rights reserved.