[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[其他] BAT+JScript混合编程替换文件内容(兼容UTF-8、Unicode编码)

原始需求:
http://www.bathome.net/thread-27183-1-1.html
  1. @set @bathome=1 /*
  2. @echo off
  3. dir /b a.txt | cscript.exe -nologo -e:jscript "%~f0"
  4. pause
  5. goto :eof
  6. rem */
  7. // JScript starts from here
  8. while (!WSH.StdIn.AtEndOfStream) {
  9.     f = WSH.StdIn.ReadLine();
  10.     WSH.StdOut.Write("\rHandling:\t"+f);
  11.     try {
  12.         ChangeContent(f);
  13.         WSH.StdOut.Write("\rSuccess:\n");
  14.     }
  15.     catch(e) {
  16.         WSH.StdOut.Write("\rFail:\n");
  17.     }
  18. }
  19. function ChangeContent(file) {
  20.     var aso, txt;
  21.     aso = new ActiveXObject("ADODB.Stream");
  22.     aso.Mode = 3;
  23.     aso.Type = 2;
  24.     aso.Charset = "cp437";
  25.     aso.Open();
  26.     aso.LoadFromFile(file);
  27.     txt = aso.ReadText(-1);
  28.     if (txt.indexOf('\x00') > -1) {
  29.         aso.Position = 0;
  30.         aso.Charset = "unicode";
  31.         txt = aso.ReadText(-1);
  32.     }
  33.     txt = txt.replace(/<\d+>/g,"")
  34.     aso.Position = 0;
  35.     aso.WriteText(txt);
  36.     aso.SetEOS();
  37.     aso.SaveToFile(file + ".new", 2);
  38.     aso.Close();
  39.     aso = null;
  40.     return txt;
  41. }
复制代码
参考代码:
http://bbs.bathome.net/viewthread.php?tid=27060#pid139641

返回列表