Altium Designer爬虫初探

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

Altium  Designer爬虫初探

 

Altium  Designer爬虫初探

 

参考代码如下:

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

上一篇:delphi 不阻塞提示对话框


下一篇:R语言用EnhancedVolcano和ggplot画同一数据的火山图