一 问题的提出 随着互连网的发展 网站的数量以惊人的数字增加 网站的作用除了给广大网友们提供信息资讯服务外 还应该成为网友们上传与下载文件的场所 在上传与下载文件的过程中 传输时间是关键 这就要求有较快的传输速度 在传输速度固定不变或是上下变动不大的情况下 尽量减小传输文件的体积 是一个可行的办法 上传文件的时候 先将要上传的文件用WINRAR压缩 上传成功后在网站内通过程序实现解压缩 下载文件的时候 先将要下载的文件在网站内通过程序实现压缩然后再下载 本文就针对该问题的解决进行探讨
二 方法与说明
首先要上传一个WINRAR的解压程序 就是WINRAR自己的解压程序 只需要它的核心程序RAR EXE这个文件就可以了 在WINRAR的安装目录里可以找到 然后要上传一个执行RAR EXE的程序 CMD EXE 这个是WINDOWS *** 作系统里的程序 在系统盘WINNT/SYSTEM 文件夹中可以找到 上传完这两个文件后 就需要编写一些程序代码来实现压缩与解压缩
不妨将实现压缩功能的文件取名为ZIP ASP 实现解压缩功能的文件取名为UNZIP ASP
程序代码中包含了WINRAR这个应用程序的命令行语法 下面简单介绍一下
WinRAR <命令><开关 ><开关N><压缩文件><文件……><@列表文件……><解压路径\>
命令 要 WinRAR 运行的字符组合代表功能
开关 切换 *** 作指定类型 压缩强度 压缩文件类型 等等的定义
压缩文件 要处理的压缩文件名
文件 要处理的文件名
列表文件 列表文件是包含要处理文件名称的纯文本 文件名应该在第一卷启动 可以在列表文件中使用//字符后添加注释 例如 你可以包含两列字符串创建 backup lst c \work\doc\* txt //备份文本文档 c \work\image\* bmp //备份图片c \work\misc并接着运行 winrar a backup @backup lst你可以在命令行中同时指定普通的文件名和列表文件名
解压路径 只与命令 e 和 x 搭配使用 指出解压文件添加的位置 如果文件夹不存在时 会自动创建
字母命令列表
a 添加文件到压缩文件 c 添加压缩文件注释 d 从压缩文件删除文件 e 从压缩文件解压压缩 忽略路径 f 刷新压缩文件中的文件 i 在压缩文件中查找字符串 k 锁定压缩文件 m 移动文件和文件夹到压缩文件 r 修复受损的压缩文件 rc 重建丢失的卷 rn 重命名压缩文件 rr[N] 添加数据恢复记录 rv[N] 创建恢复卷 s[name] 转换压缩文件成为自解压文件类型 s 删除自解压模块 t 测试压缩文件 u 从压缩文件中更新文件 x 以完整路径名称从压缩文件解压压缩其实程序代码中的关键之处就是用Server CreateObject( Wscript Shell )来执行CMD EXE CMD EXE运行RAR EXE通过WINRAR的命令来执行解压缩文件与压缩文件的 三 程序清单
ZIP ASP程序清单 <% main文件夹中包含cmd exe rar exe 例如 要压缩的文件(* mdb) 压缩后的存放目录为main\data raron error resume nextunzip_path=Server mappath( main )&\ Set WshShell = server CreateObject( Wscript Shell )IsSuccess = WshShell Run ( winrar a &unzip_path&data &unzip_path&* mdb False) WinRAR <命令><开关 ><开关N><压缩文件><文件 ><@列表文件 ><解压路径\>命令: A 添加到压缩文件中if IsSuccess = ThenResponse write 命令成功执行! elseResponse write 命令执行失败!权限不够或者该程序无法运行 end ifif err number <>thenResponse Write <p>错误号码 &Err numberResponse Write <p>原因 &Err descriptionResponse Write <p>错误来源 &Err SourceResponse Write end if%>
UNZIP ASP程序清单 <% main文件夹中包含cmd exe rar exe 要解压缩的文件(* rar) 解压缩后的存放目录为mainon error resume nextunzip_path=Server mappath( main )&\ Set WshShell = server CreateObject( Wscript Shell )IsSuccess = WshShell Run ( winrar x r o+ &unzip_path&* rar &unzip_path&False) WinRAR <命令><开关 ><开关N><压缩文件><文件 ><@列表文件 ><解压路径\>命令: X 从压缩文件中全路径解压文件 开关: R 连同子文件夹 开关: O+ 覆盖已经存在的文件 开关: O 不覆盖已经存在的文件if IsSuccess = ThenResponse write 命令成功执行! elseResponse write 命令执行失败!权限不够或者该程序无法运行 end ifif err number <>thenResponse Write <p>错误号码 &Err numberResponse Write <p>原因 &Err descriptionResponse Write <p>错误来源 &Err SourceResponse Write end if%>四 结论
lishixinzhi/Article/program/net/201311/13376先复制你系统里面的cmd.exe和Rar.exe到网站目录SysRar下,没有则创建该目录
调用相应函数即可实现,zip为压缩函数,UnZip为解压函数
这两个功能运行没有任何问题,不过我想在压缩文件时加个注释就没有成功过
我的问题在http://zhidao.baidu.com/question/347165075.html?oldq=1
如果你找到我问题的解决方案,请告诉我一声
<%
'压缩功能函数
Sub Zip()
Dim tmpSitePath
tmpSitePath = "www"
set fso=server.createobject("scripting.filesystemobject")
If fso.folderexists(server.mappath("/"&tmpSitePath)) = False Then
chkError = chkError &"你的网站目录找不到!\n\n"
Response.Write("<script language=""JavaScript"">alert(""提示:\n\n"&chkError&""")window.location.href='?Page="&Page&"&Keyword="&Keyword&"&Rd="&INT(8+1)*RND&"'</script>")
response.End
End If
if fso.FileExists(server.mappath("/"&tmpSitePath)&".rar") Then
fso.DeleteFile server.mappath("/"&tmpSitePath&".rar"),True
End If
If fso.folderexists(server.mappath("/Tmp"&tmpSitePath)) Then
fso.DeleteFolder(server.mappath("/Tmp"&tmpSitePath))
End If
fso.CreateFolder(server.mappath("/Tmp"&tmpSitePath))
fso.copyfolder server.mappath("/"&tmpSitePath),server.mappath("/Tmp"&tmpSitePath)
'----进行些相应的数据库COPY *** 作----
Server.ScriptTimeout=99999
Dim winrar,cmddir
Winrar=Server.Mappath("/SysRar/Rar.exe") '压缩文件(Winrar)的地址
cmddir=Server.Mappath("/SysRar/cmd.exe") 'cmd.exe(命令提示符)的地址
Set Shell = Server.CreateObject("WScript.Shell")
Runing= cmddir&" /c """&winrar&""" a -r -ibck -y -zReadMe.txt -ep1 -o+ -p"&tmpSitePath&" " '压缩 c -zReadMe.txt /cf 添加文件注释
Cmd=Runing&server.mappath("/"&tmpSitePath)&".rar "&server.mappath("/Tmp"&tmpSitePath&"/")&"\*.*"
Runcode = Shell.Run(Cmd,1,True)
Runing = Shell.Run(cmddir&" /c taskkill /im winrar.exe",1,false)
Runing = Shell.Run(cmddir&" /c exit",1,false)
Set Shell=Nothing
if not isempty(Runcode) and Runcode=0 Then
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile server.mappath("/"&tmpSitePath)&".rar"
ContentType = "application/octet-stream"
Response.AddHeader "Content-Disposition", "attachmentfilename="&tmpSitePath&".rar"
Response.Charset = "UTF-8"
Response.ContentType = ContentType
Response.BinaryWrite objStream.Read
Response.Flush
response.Clear()
objStream.Close
Set objStream = Nothing
if fso.FileExists(server.mappath("/"&tmpSitePath)&".rar ") Then
fso.DeleteFile server.mappath("/"&tmpSitePath&".rar "),True
End If
elseif not isempty(Runcode) then
Response.Write(" *** 作执行失败!可能您的权限不够或者该程序无法在DOS(命令提示符)下运行,您提交的 *** 作如下:<br>" &Cmd)
else
end if
If Err Then
Response.Write "<br>"&err.description
err.Clear
End If
If fso.folderexists(server.mappath("/Tmp"&tmpSitePath)) Then
fso.DeleteFolder(server.mappath("/Tmp"&tmpSitePath))
End If
Set fso =nothing
End Sub
'解压功能函数
Sub UnZip()
Call ChkSession()
Dim tmpSitePath
tmpSitePath = "www"
set fso=server.createobject("scripting.filesystemobject")
if fso.FileExists(server.mappath("/"&tmpSitePath)&".rar") = False Then
chkError = chkError &"你的Rar压缩文件找不到!\n\n"
Response.Write("<script language=""JavaScript"">alert(""友情提示:\n\n"&chkError&""")window.location.href='?Page="&Page&"&Keyword="&Keyword&"&Rd="&INT(8+1)*RND&"'</script>")
response.End
End If
If fso.folderexists(server.mappath("/"&tmpSitePath)) Then
fso.DeleteFolder(server.mappath("/"&tmpSitePath))
End If
fso.CreateFolder(server.mappath("/"&tmpSitePath))
Server.ScriptTimeout=99999
Dim winrar,cmddir
Winrar=Server.Mappath("/SysRar/Rar.exe")
cmddir=Server.Mappath("/SysRar/cmd.exe")
Set Shell = Server.CreateObject("WScript.Shell")
Runing= cmddir&" /c """&winrar&""" x -ibck -t -y -o+ -p"&tmpSitePath&" "
Cmd=Runing&server.mappath("/"&tmpSitePath)&".rar"&" "&server.mappath("/"&tmpSitePath)
Runcode = Shell.Run(Cmd,1,True)
Runing = Shell.Run(cmddir&" /c taskkill /im winrar.exe",1,false)
Runing = Shell.Run(cmddir&" /c exit",1,false)
Set Shell=Nothing
if not isempty(Runcode) and Runcode=0 Then
Response.Write(" *** 作成功执行,您提交的 *** 作如下:<br>"&Cmd)
if fso.FileExists(server.mappath("/"&tmpSitePath)&".rar ") Then
fso.DeleteFile server.mappath("/"&tmpSitePath&".rar "),True
End If
elseif not isempty(Runcode) then
Response.Write(" *** 作执行失败!可能您的权限不够或者该程序无法在DOS(命令提示符)下运行,您提交的 *** 作如下:<br>" &Cmd)
else
end If
Set fso =nothing
If Err Then
Response.Write "<br>"&err.description
err.Clear
End If
Response.Write("<script language=""JavaScript"">alert(""友情提示:\n\n解压成功,所有数据为最新压缩包数据"")window.location.href='?Page="&Page&"&Keyword="&Keyword&"&Rd="&INT(8+1)*RND&"'</script>")
End Sub
%>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)