js解壓字元串
發布時間: 2025-01-16 18:54:17
一個超長字元串有由PHP進行壓縮,得到壓縮後字元串,再由瀏覽器的javascript進行解壓縮得到原字元串.
有沒有這樣的插件,或者演算法,函數,方法,類等工具,我還是畢竟推薦你去後盾人看看,裡面有很多關於php的這類視頻,你可以去看看
2. node.js同步怎麼解壓文件
搜到一個只能解壓縮的 https://github.com/nearinfinity/node-unzip
fs.createReadStream('path/to/archive.zip').pipe(unzip.Extract({ path: 'output/path' }));
var readStream = fs.createReadStream('path/to/archive.zip');var writeStream = fstream.Writer('output/path');fs.createReadStream('path/to/archive.zip')
.pipe(unzip.Parse())
.on('entry', function (entry) {
var fileName = entry.path;
var type = entry.type; // 'Directory' or 'File'
var size = entry.size;
//process the entry or pipe it to another stream
...
});
熱點內容