标题: [文本处理] 想用批处理调用外部node.js命令处理文本怎么解决? [打印本页]
作者: xp3000 时间: 2023-5-20 13:00 标题: 想用批处理调用外部node.js命令处理文本怎么解决?
下面方式调用node处理文件时候乱码,怎么解决?- @if(0)==(0) echo off
- REM.保存为ANSI编码
- dir /b/a-d/oN "*.txt" | cscript -nologo -e:jscript "%~0"
- pause & goto :EOF
- @end
- fso = new ActiveXObject("Scripting.FileSystemObject");
- var shell = new ActiveXObject("WScript.Shell");
- while (!WSH.StdIn.AtEndOfStream) {
- var file = WSH.StdIn.ReadLine();
- var command = 'cmd /c node -e "console.log(fs.readFileSync(\''+file+'\', \'UTF-8\'))"';
- //var command = 'cmd /c node -e "require(\'fs\').readFile(\''+file+'\', \'UTF-8\', function(err, data){console.log(data)})"';
- var execObject = shell.Exec(command);
- var output = execObject.StdOut.ReadAll();
- WScript.Echo(output);
- }
复制代码
作者: terse 时间: 2023-5-20 13:39
一定得调用node.js来读取文件吗;
要么设置一下chcp试试呢
作者: xp3000 时间: 2023-5-20 13:55
加了这个后就不行了
shell.Run('chcp 65001', 0, true);
主要是node的语法网站上到处可以搜索出来,修改也就方便很多
作者: terse 时间: 2023-5-20 16:37
本帖最后由 terse 于 2023-5-20 16:38 编辑
回复 3# xp3000
@echo off
chcp 65001
不行的话第10行变量值改一下试试呢 var command = 'chcp 65001 && cmd /c node -e ....
作者: xp3000 时间: 2023-5-20 17:23
也不行,找到一种方法,先对data使用encodeURIComponent编码,
然后在shell.Exec外部用decodeURIComponent对output进行解码,
但是效率就变差了,cscript不能支持JS ES13太遗憾了- @if(0)==(0) echo off
- REM.保存为ANSI编码
- dir /b/a-d/oN "*.txt" | cscript -nologo -e:jscript "%~0"
- pause & goto :EOF
- @end
- fso = new ActiveXObject("Scripting.FileSystemObject");
- var shell = new ActiveXObject("WScript.Shell");
- while (!WSH.StdIn.AtEndOfStream) {
- var file = WSH.StdIn.ReadLine();
- WScript.Echo(file+' 内容:\n');
- //var command = 'cmd /c node -e "console.log(fs.readFileSync(\''+file+'\', \'UTF-8\').toString(\'ascii\'))"';
- var command = '\
- cmd /c node -e "require(\'fs\').readFile(\''+file+'\', \'UTF-8\', function(err, data){\
- console.log(encodeURIComponent(data))\
- })"';
- var execObject = shell.Exec(command);
- var output = execObject.StdOut.ReadAll();
- WScript.Echo(decodeURIComponent(output));
- }
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |