其他分享
首页 > 其他分享> > Altium Designer爬虫初探

Altium Designer爬虫初探

作者:互联网

在网页中爬取数据可以使用JAVA、PHP、C/C++、Python等语言,在Altium Designer中可以支持DelphiScript、EnableBasic、VBScript 和 JavaScript哲种脚本语言,怎么在网页中爬取数据。

 

 

参考代码如下:

Dim xmlhttp
Dim Str
Dim Str_url
Dim note
Dim objHTMLdoc
Str_url = "http://www.baidu.com/"
'Set xmlhttp = CreateObject("MSXML2.XMLHTTP")
'Set xmlhttp = CreateObject("Microsoft.XMLHTTP")
Set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP.6.0")
xmlhttp.open "GET",Str_url,False
xmlhttp.Send
Str_xml =xmlhttp.responseText
MsgBox Str_xml

'创建网页对象
Set objHTMLdoc = CreateObject("htmlfile")'
objHTMLdoc.designMode = "on"
objHTMLdoc.Write Str_xml
Set title_tag = objHTMLdoc.getElementsByTagName("title")
Value=  title_tag.Length
If Value > 0 Then
    MsgBox title_tag(0).innerText
End If
Set xmlhttp = Nothing

标签:objHTMLdoc,Designer,xmlhttp,title,爬虫,CreateObject,Altium,Set,Str
来源: https://www.cnblogs.com/xiongshuang/p/15740153.html