首頁  >  文章  >  web前端  >  nodejs批次修改檔案編碼格式_node.js

nodejs批次修改檔案編碼格式_node.js

WBOY
WBOY原創
2016-05-16 16:18:301488瀏覽

摘要:
  最近在製作手冊的時候遇到了一個問題'文檔亂碼',查看文件之後發現文件編碼不對,總共100多個文件,如果用編輯器另存為utf8,那就悲催了。所以自己就寫了個程序,批量修改文件編碼格式。

代碼:

複製程式碼 程式碼如下:

/**
 * 修改文件編碼格式,例如:GBK轉UTF8
 * 支援多層目錄
 * @param {String} [root_path] [需要進行轉碼的檔案路徑]
 * @param {Array}  [file_type] [需要進行轉碼的檔案格式,例如html檔案]
 * @param {String} [from_code] [檔案的編碼]
 * @param {String} [to_code]   [檔案的目標編碼]
 */
// 引入套件
var fs = require('fs'),
  iconv = require('iconv-lite');
// 全域變數
var root_path = './html',
    file_type = ['html', 'htm'],
    from_code = 'GBK',
    to_code   = 'UTF8';
/**
 * 判斷元素是否在陣列內
 * @date   2015-01-13
 * @param  {[String]}   elem [尋找的元素]
 * @return {[bool]}        [description]
 */
Array.prototype.inarray = function(elem) {
  "use strict";
  var l = this.length;
  while (l--) {
    if (this[l] === elem) {
      return true;
    }
  }
  return false;
};
/**
 * 轉碼函數
 * @date   2015-01-13
 * @param  {[String]}   root [編碼檔案目錄]
 * @return {[type]}        [description]
 */
function encodeFiles(root) {
  "use strict";
  var files = fs.readdirSync(root);
  files.forEach(function(file) {
    var pathname = root '/' file,
      stat = fs.lstatSync(pathname);
    if (!stat.isDirectory()) {
      var name = file.toString();
      if (!file_type.inarray(name.substring(name.lastIndexOf('.') 1))) {
        return;
      }
      fs.writeFile(pathname, iconv.decode(fs.readFileSync(pathname), from_code), {
        encoding: to_code
      }, function(err) {
        if (err) {
          throw err;
        }
      });
    } else {
      encodeFiles(pathname);
    }
  });
}
encodeFiles(root_path);

 

小結:
  上面的程式支援多層目錄,同一個檔案不能進行多次操作,否則又會出現亂碼。

完整程式碼:https://github.com/baixuexiyang/coding,你可以fork到自己的帳號下,如果有bug請在issue上提。

是不是非常不錯呢,希望大家能夠喜歡,有疑問就留言吧。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn