我试图读取一个 zip 文件,然后在 zip 的根目录解析一个 json 文件。
该 json 文件称为 manifest.json 并将在我读取的每个 zip 文件中调用它。
目前我有以下功能
function getFileContents(directory){
// reading archives
var zip = new AdmZip(directory);
var zipEntries = zip.getEntries(); // an array of ZipEntry records
zipEntries.forEach(function (zipEntry) {
if (zipEntry.entryName == "manifest.json") {
console.log('getData', zipEntry.getData());
console.log('data',zipEntry.data.toString('utf8'));
}
});
}
但是我在控制台中得到以下异常
getData <Buffer ff fe 7b 00 0a 00 20 00 20 00 22 00 62 00 75 00 69 00 6c 00 64 0
0 22 00 3a 00 20 00 22 00 34 00 2e 00 38 00 2e 00 37 00 32 00 31 00 39 00 22 00
2c 00 0a ...>
TypeError: Cannot call method 'toString' of undefined
at c:\direc\Custom_Modules\readZipFileModule\readZipFileModule.js:18:46
at Array.forEach (native)
这个我试过的背面:
function getFileContents(directory){
// reading archives
var zip = new AdmZip(directory);
var zipEntries = zip.getEntries(); // an array of ZipEntry records
zipEntries.forEach(function (zipEntry) {
if (zipEntry.entryName == "manifest.json") {
var decompressedData = zip.readFile(zipEntry);
var data = zip.readAsText(zipEntry)
console.log(JSON.parse(data));
}
});
}
如果我 console.log 数据我得到:
??{
" b u i l d " : " 4 . 8 . 7 2 1 9 " ,
" b r a n c h " : " s t e p h e n " ,
" t i m e s t a m p " : " 1 5 - 0 1 - 2 0 1 4 0 9 : 0 6 : 2 7 "
}
这是文件中的正确数据,但是每个字符之间没有空格。但是当我尝试解析它时,它显然会抛出一个关于“??”的错误 问号从哪里来?我不完全理解如何正确使用 adm-zip 从 nodejs 中的 zip 中读取 json 文件我到底做错了什么?它不需要保存文件,只需将其数据解析为对象即可。
感谢您对此提供的任何帮助。