两种小偷程序的比较第1/2页 日期:2020-05-13 栏目:程序人生 浏览:次 Function GetURL(url) Set Retrieval = CreateObject("Microsoft.XMLHTTP") With Retrieval .Open "GET", url, False .Send GetURL = bytes2bstr(.responsebody) '对取得信息进行验证,如果信息长度小于100则说明截取失败 if len(.responsebody)<100 then response.write "获取远程文件 "&url&" 失败。" response.end end if End With Set Retrieval = Nothing End Function ' 二进制转字符串,否则会出现乱码的! function bytes2bstr(vin) strreturn = "" for i = 1 to lenb(vin) thischarcode = ascb(midb(vin,i,1)) if thischarcode < &h80 then strreturn = strreturn & chr(thischarcode) else nextcharcode = ascb(midb(vin,i+1,1)) strreturn = strreturn & chr(clng(thischarcode) * &h100 + cint(nextcharcode)) i = i + 1 end if next bytes2bstr = strreturn end function function savetofile(bodyall,filename) dim objstream1 set objstream1=createobject("adodb.stream") objstream1.type=2 objstream1.open objstream1.position=objstream1.size objstream1.writetext bodyall objstream1.savetofile filename,2 objstream1.close set objstream1=nothing end function '声明截取的格式,从Start开始截取,到Last为结束 Function GetKey(HTML,Start,Last) filearray=split(HTML,Start) filearray2=split(filearray(1),Last) GetKey=filearray2(0) End Function url="http://www.86516.com" Html = GetURL(Url) savetofile html,"ce.htm" [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] 12下一页阅读全文 上一篇:简单分页函数一 常用 下一篇:关于静态页生成问题 突破form数量限制 内容版权声明:除非注明,否则皆为本站原创文章。 转载注明出处:http://www.heiqu.com/3708.html 相关推荐 2021-04-091vue.js在标签属性中插入变量参数的方法 2021-04-092cli 打包时抽离项目相关配置文件详解 2021-04-093解决iview打包时UglifyJs报错的问题 2021-04-094Ubuntu 编译运行C笔记 2021-04-095Android 多线程断点续传下载器