使用NodeJS编写具有多字节字符的文件

时间:2015-05-29 04:24:48

标签: node.js

美好的一天,我一直在网上为此而且我仍然不知所措..

fs.writeFile(PCAP_DIR + '赤さたな文字カナ.txt', '赤さたな文字カナ testing', {encoding: "utf8"}, function (err) {
    if (err) {
        console.log(err);
    } else {
        console.log('Success');
    }
});

我尝试了上面的代码,在文件名和数据上写了一个带有日文字符的文件。但是,输出文件的结果如下:

�Ԃ����ȕ����J�i.txt

,里面是:

・スヤゑソス・ス・ス・スネ包ソス・ス・ス・スJ・スi testing

我在这里做错了吗?

0 个答案:

没有答案