美文网首页
nodejs调用系统命令,输出结果中文乱码问题

nodejs调用系统命令,输出结果中文乱码问题

作者: 2b75747cf703 | 来源:发表于2017-06-11 15:38 被阅读192次
    var child_process = require('child_process');
    var iconv = require('iconv-lite');
    var encoding = 'cp936';
    var binaryEncoding = 'binary';
    
    child_process.exec('svn log', { encoding: binaryEncoding }, function(err, stdout, stderr){
        console.log(iconv.decode(new Buffer(stdout, binaryEncoding), encoding), iconv.decode(new Buffer(stderr, binaryEncoding), encoding));
    });
    

    http://ask.csdn.net/questions/167560

    相关文章

      网友评论

          本文标题:nodejs调用系统命令,输出结果中文乱码问题

          本文链接:https://www.haomeiwen.com/subject/fxbhqxtx.html