您现在的位置是:网站首页> 编程资料编程资料
实例讲解实现抓取网上房产信息的ASP程序_小偷/采集_
2023-05-25
257人已围观
简介 实例讲解实现抓取网上房产信息的ASP程序_小偷/采集_
http://www.w3.org/TR/html4/loose.dtd">
<%
on error resume next
'
Server.ScriptTimeout = 999999
'========================================================
'字符编码函数
'====================================================
Function BytesToBstr(body,code)
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 =code
BytesToBstr = objstream.ReadText
objstream.Close
set objstream = nothing
End Function
'取行字符串在另一字符串中的出现位置
Function Newstring(wstr,strng)
Newstring=Instr(lcase(wstr),lcase(strng))
if Newstring<=0 then Newstring=Len(wstr)
End Function
'替换字符串函数
function ReplaceStr(ori,str1,str2)
ReplaceStr=replace(ori,str1,str2)
end function
'====================================================
function ReadXml(url,code,start,ends)
set oSend=createobject("Microsoft.XMLHTTP")
SourceCode = oSend.open ("GET",url,false)
oSend.send()
ReadXml=BytesToBstr(oSend.responseBody,code )
start=Instr(ReadXml,start)
ReadXml=mid(ReadXml,start)
ends=Instr(ReadXml,ends)
ReadXml=left(ReadXml,ends-1)
end function
function SubStr(body,start,ends)
start=Instr(body,start)
SubStr=mid(body,start+len(start)+1)
ends=Instr(SubStr,ends)
SubStr=left(SubStr,ends-1)
end function
dim getcont,NewsContent
dim url,title
url="http://www.***.com"'新闻网址knowsky.com
getcont=ReadXml(url,"gb2312","
| "," ") NewsContent=RemoveHtml(NewsContent) NewsContent=replace(NewsContent,VbCrLf,"") NewsContent=replace(NewsContent,vbNewLine,"") NewsContent=replace(NewsContent," ","") NewsContent=replace(NewsContent," ","") NewsContent=replace(NewsContent," ","") NewsContent=replace(NewsContent,"\n","") NewsContent=replace(NewsContent,chr(10),"") NewsContent=replace(NewsContent,chr(13),"") '===============get Content======================= response.Write(NewsContent) KeyId=SubStr(NewsContent,"列号:","信息类别:") NewsClass=SubStr(NewsContent,"类别:","所在城市:") City=SubStr(NewsContent,"城市:","房屋具体位置:") Position=SubStr(NewsContent,"位置:","房屋类型:") HouseType=SubStr(NewsContent,"类型:","楼层:") Level=SubStr(NewsContent,"楼层:","使用面积:") Area=SubStr(NewsContent,"面积:","房价:") Price=SubStr(NewsContent,"房价:","其他说明:") Demostra=SubStr(NewsContent,"说明:","联系人:") ContactMan=SubStr(NewsContent,"联系人:","联系方式:") Contact=SubStr(NewsContent,"联系方式:","信息来源:") response.Write("总序列号:"&KeyId&" ") response.Write("信息类别:"&NewsClass&" ") response.Write("所在城市:"&City&" ") response.Write("房屋具体位置:"&Position&" ") response.Write("房屋类型:"&HouseType&" ") response.Write("楼层:"&Level&" ") response.Write("使用面积:"&Area&" ") response.Write("房价:"&Price&" ") response.Write("其他说明:"&Demostra&" ") response.Write("联系人:"&ContactMan&" ") response.Write("联系方式:"&Contact&" ") 'title=RemoveHTML(aa(i)) 'response.Write("title:"&title) for n=0 to application.Contents.count if(application.Contents(n)=KeyId) then ifexit=true end if next if not ifexit then application(time&i)=KeyId '添加到数据库 '==================================================== set rs=server.CreateObject("adodb.recordset") rs.open "select top 1 * from news order by id desc",conn,3,3 rs.addnew rs("NewsClass")=NewsClass rs("City")=City rs("Position")=Position rs("HouseType")=HouseType rs("Level")=Level rs("Area")=Area rs("Price")=Price rs("Demostra")=Demostra rs("ContactMan")=ContactMan rs("Contact")=Contact rs.update rs.close set rs=nothing end if '================================================== next function RemoveTag(body) Set regEx = New RegExp | ","") TempStr=replace(TempStr," | ","")
总序列号: | 479280 |
信息类别: | 出租 |
所在城市: | 济南 |
房屋具体位置: | 华龙路华信路交界口 |
房屋类型: | 其他 |
楼层: | 六层 |
使用面积: | 24~240 平方米之间 |
房价: | 0 [租赁:元/月,买卖:万元/套] |
| 提示:
本文由神整理自网络,如有侵权请联系本站删除!
本站声明: 1、本站所有资源均来源于互联网,不保证100%完整、不提供任何技术支持; 2、本站所发布的文章以及附件仅限用于学习和研究目的;不得将用于商业或者非法用途;否则由此产生的法律后果,本站概不负责!
相关内容点击排行本栏推荐
|
