发一个js的 先粗暴处理32编码文件- 1>1/* :
- @echo off
- set "ph=%cd%\Result\"
- set "enc=gb2312"
- md "%ph%" 2>nul
- dir /b /a-d *.txt *.jpg| cscript -nologo -e:jscript %0 "%ph%" "%enc%"
- pause & exit
- */
- var cp1252 = "\u20AC\u0081\u201A\u0192\u201E\u2026\u2020\u2021\u02C6\u2030\u0160\u2039\u0152\u008D\u017D\u008F\u0090\u2018\u2019\u201C\u201D\u2022\u2013\u2014\u02DC\u2122\u0161\u203A\u0153\u009D\u017E\u0178";
- var reg = /^(fffe00|00feff|efbbbf|fffe|feff)/i, re = /(?:^|\n)(PS\d*:.*)/g,
- charsets = { 'fffe00' : 'unicodefffe', '00feff' : 'unicodefeff', 'efbbbf' : "UTF-8", 'fffe' : 'unicodefffe', 'feff' : 'unicodefeff' };
- function getText(file, enc) {
- var i = 0, stream, bin, count, content, hex='';
- stream = new ActiveXObject("ADODB.Stream");
- stream.type = 2;
- stream.charset = 'Latin1';
- stream.open();
- stream.loadFromFile(file);
- bin= stream.ReadText(-1);
- count = (bin.length > 4096) ? 4096 : bin.length;
- for (;i<4;) hex += bin.charCodeAt(i++).toString(16);
- var bom = reg.test(hex) ? hex.match(reg)[0] : '';
- stream.Position = 0;
- stream.Type = 2;
- stream.charset = bom ? charsets[bom] : getEncoding(bin, count) ? 'UTF-8' : 'gbk';
- content = stream.readText(-1);
- if (/00/.test(bom))
- {
- if (bom == '00feff') { content = content.slice(2) };
- content = content.replace(/\x00/g, '');
- }
- stream.Close
- return content
- }
-
- function getEncoding(b, len) {
- var n = 1;
- for ( var i = 0; i < len; i++)
- {
- var byt = (b.charCodeAt(i) <= 255) ? b.charCodeAt(i):
- 128+cp1252.indexOf(b.charAt(i));
- if (n == 1)
- {
- if (byt >= 0x80)
- {
- while (((byt <<= 1) & 0x80) != 0) {n++}
- if (n == 1 || n > 6) { return false }
- }
- } else {
- if ((byt & 0xC0) != 0x80) { return false}
- n--;
- }
- }
- return true;
- }
- var enc = WScript.Arguments(1);
- while (!WScript.StdIn.AtEndOfStream){
- var file = WScript.StdIn.ReadLine();
- var text = getText( file ).replace(re, '');
- var path = WScript.Arguments(0) + file;
- var stream = new ActiveXObject("ADODB.Stream");
- stream.type = 2;
- stream.charset = enc;
- stream.open();
- stream.writetext(text);
- stream.SaveToFile(path, 2);
- stream.Close
- }
复制代码
|