关于 unzip解压中文乱码的问题
//解压文件
wx.getFileSystemManager().unzip({
zipFilePath: myzipfile, //源文件路径,只可以是 zip 压缩文件
targetPath: myunzipfilepath, // 解压资源存放路径
success: function (res) {
this.getdirfile();
// 解压成功
wx.showToast({
title: ‘解压成功’,
icon: ‘loading’,
duration: 2000
})
},
fail: function (res) {
// 解压失败
wx.showModal({
title: ‘提示’,
content: ‘文件格式不对,只支持ZIP格式的压缩包解压。’+res,
showCancel: false
})
},
上述代码解压后,中文名的文件名全成乱码了。