chm格式文件怎么转换为txt文件?有没有好点的txt转换器呢?
嗯,可以使用这个VBS代码
@echo off mode con cols=50 lines=10color atitle CHM to TXT BY:百度空间踏雪无痕 %date%echo 文件反编译中,请稍后。。。dir /b /a-d *.chm 2>nulif errorlevel 1 echo 请选择正确路径&pause&exitfor /f "delims=." %%i in ('dir /b /a-d *.chm 2^>nul') do (hh.exe -decompile %%i文件 %%i.chm
cd %%i文件copy ..\HtoX32c.exe HtoX32c.exe
for /f "delims=. tokens=1,*" %%a in ('dir /b /s /a-d *.htm 2^>nul') do (
if "%%b"=="htm" (HtoX32c.exe /ip "%%a.htm" > "%%a.txt")
if "%%b"=="html" (HtoX32c.exe /ip "%%a.html" > "%%a.txt")
del "%%a.%%b" /q /f >nul 2>nul)
del *.hhc /q /f /s>nul 2>nuldel *.hhk /q /f /s>nul 2>nuldel HtoX32c.exe /f /q >nul 2>nuldel *.gif /s /f /q >nul 2>nulcd ..)clsdir /b /a-d *.chm 2>nulecho 文件编译完成,感谢使用!pause>nul 2>nul
以上代码粘贴到文本再另保存为xxx.vbs chm文件与vbs文件放在同一文件夹中,双击运行vbs
其他工具 http://iask.sina.com.cn/u/2095152232/ish?folderid=598478
标签:txt,格式文件,chm