采集程序的原理是什么?
时间:2011-07-13
来源:互联网
Function getHTTPPage(url,language)
'On Error Resume Next
dim http
set http=Server.createobject("Microsoft.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,language)
set http=Nothing
If Err.number<>0 then
Response.Write "<p align='center'><font color='red'><b>服务器获取文件内容出错</b></font></p>"
Err.Clear
End If
End Function
Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
这是采集常用的两个函数。请问在采集的时候,程序是使用什么身份打开要采集的页面的?是使用哪个浏览器打开的吗?
'On Error Resume Next
dim http
set http=Server.createobject("Microsoft.XMLHTTP")
Http.open "GET",url,false
Http.send()
if Http.readystate<>4 then
exit function
end if
getHTTPPage=bytesToBSTR(Http.responseBody,language)
set http=Nothing
If Err.number<>0 then
Response.Write "<p align='center'><font color='red'><b>服务器获取文件内容出错</b></font></p>"
Err.Clear
End If
End Function
Function BytesToBstr(body,Cset)
dim objstream
set objstream = Server.CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode =3
objstream.Open
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.Charset = Cset
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
这是采集常用的两个函数。请问在采集的时候,程序是使用什么身份打开要采集的页面的?是使用哪个浏览器打开的吗?
作者: wangsdong 发布时间: 2011-07-13
就是像浏览器请求一个页面一样,一个是地址栏
你那个是通过程序
你那个是通过程序
作者: aspwebchh 发布时间: 2011-07-13
我在注册表中修改了一个地方,改后,我的IE就可以模拟搜索引擎打开页面效果一样,但是我和程序却没有得到这样的效果。
所以想了解一下采集使用的是哪个浏览器打开的,为什么?
所以想了解一下采集使用的是哪个浏览器打开的,为什么?
作者: wangsdong 发布时间: 2011-07-13
请求的内容在不同的浏览器上表现的效果可能不一样,但内容是一样的。你获取的是内容。
不知道我理解对或者说明白了没?
不知道我理解对或者说明白了没?
作者: gingerkang 发布时间: 2011-07-13
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28