欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一个批量编码转换及ASP/JS加解密/简繁转换的工具

程序员文章站 2022-07-10 15:11:09
详情看这里  http://hi.baidu.com/lael80/blog/item/6633d7fc89f9f282b801a061.html  h...
详情看这里 
http://hi.baidu.com/lael80/blog/item/6633d7fc89f9f282b801a061.html 
http://www.gzyd.net/lael/coding.rar 
文件编码转换/screnc加解密/简繁转换 1.0 
使用注意: 
1、使用前请备份,使用本软件造成的损失自负; 
2、进行编码转换前请确认所有文件的源编码一致并选择正确,否则可能出现错误。 
3、对asp代码进行加密或解密或简繁转换前须确认文件的编码为ansi,否则可能出现乱码, 
完成操作后可再转回原编码。 
4、asp加密是相当于调用微软的: 
如果包含:<%@language="vbscript" codepage="936"%> 
screnc.exe /s /f /xl /e asp *.* 
screnc.exe /s /f /xl /e htm *.* 
否则: 
screnc.exe /s /f /e asp *.* 
screnc.exe /s /f /e htm *.* 
加密外部*.js或*.vbs请先在文件加上 
<script language="脚本语言">代码</script>,完成后再删除。 
5、asp解密是自己改的。原文是jscript的,改了一天才改成了vbscript,呵呵 
6、如果原文件同时包含有加密及未加密代码(情况很少出现~_~), 
请先运行解密,然后再次加密。 
7、coding.txt是系统文件编码列表,如果发现你要的编码没有可手动添加一行 
8、使用本软件不会在代码添加任何个人信息,保证原味。 
9、谢谢大家的使用,有问题来邮件。 
10、本软件还可以帮助你把多个文件夹下面的文件另存到同一目录哦~_~ 
11、有些系统可能要装vb6或vb运行库或windows script encoder 
其它说明: 
1、textbox不支持二进制的内容? 
2、本软件不允许加密两次,加密两次会使解密出错,即使是执行两次解密操作, 
可能是解密代码的问题(第一次解密后会出现一些未知字符), 
也可能是加密多次会出现一些未知字符,使解密操作失败。 如果你有兴趣完成上面其它说明提到的错误 
及编码转换部分能做成自动识别编码及*选择是否加入/删除bom文件头, 
请留下你的邮箱及你的网址,我会发源代码给你。自动识别编码.... 
在源代码里面已经有一个函数(module1.bas \ filecodingcheck()), 
但经测试不太准确,特别是没有bom头的文件。 
public function filecodingcheck(byval filepath as string) 
dim smobj as new adodb.stream 
dim smread1 as integer, smread2 as integer, smread3 as integer 
smobj.type = 1 
smobj.open 
smobj.loadfromfile filepath 
smobj.position = 0 
if lenb(smobj.read) >= 1 then 
smobj.position = 0 
smread1 = ascb(smobj.read(1)) 
end if 
smobj.position = 0 
if lenb(smobj.read) >= 2 then 
smobj.position = 1 
smread2 = ascb(smobj.read(1)) 
end if 
smobj.position = 0 
if lenb(smobj.read) >= 3 then 
smobj.position = 2 
smread3 = ascb(smobj.read(1)) 
end if 
if smread1 = &hff and smread2 = &hfe then 
filecodingcheck = "unicode" 
elseif smread1 = &hfe and smread2 = &hff then 
filecodingcheck = "unicode big endian" 
elseif smread1 = &hef and smread2 = &hbb and smread3 = &hbf then 
filecodingcheck = "utf-8" 
else 
filecodingcheck = "ansi" 
end if 
smobj.close 
set smobj = nothing 
end function