我有用 koi8-u 编码的文件
我只需要复制这个文件,但是,通过 toString()
fs = require('fs')
fs.readFile('fileOne',function(e,data){
data = data.toString() // now encoding is damaged
??? // my code must be here
fs.writeFile('fileTwo',data)
})
我使用不同的字符集尝试了 iconv ,但没有成功。谢谢!