Altium Designer爬虫初探

Altium Designer程序定制开发 公众号:EDA设计自动化

在网页中爬取数据可以使用JAVA、PHP、C/C++、Python等语言,在Altium Designer中可以支持DelphiScript、EnableBasic、VBScript 和 JavaScript4种脚本语言,以下简单介绍怎么在网页中获取一张网页的数据。

 

 

参考代码如下:

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

posted on 2021-12-28 12:38  弦歌不辍  阅读(191)  评论(0编辑  收藏  举报