语言版本(VB.Net) 平台版本(.NET 4) 操作系统(Windows 7旗舰版)
我需要创建tumblr下载器。我想我可以使用这个xml链接获取图像网址 http://fyeahsonnaeun.tumblr.com/api/read?start=1 我已经使用xelement / xmldocument加载页面,但我不知道如何提取图像链接
<photo-url max-width="1280">media.tumblr.com/1bbf0fd243f78727f51c6b79fe758ba8/tumblr_mw49olJwkB1qm4souo1_1280.jpg</photo-url>
我需要获取<photo-url max-width="1280">...</photo-url>
答案 0 :(得分:1)
有很多方法可以做到这一点。您可以使用下面的代码,这个代码使用System.Xml.XmlDocument
类来读取xml,并假设您想要的是根元素的值。
Dim xml As String = "<photo-url max-width=""1280"">media.tumblr.com/1bbf0fd243f78727f51c6b79fe758ba8/tumblr_mw49olJwkB1qm4souo1_1280.jpg</photo-url>"
Dim doc As New System.Xml.XmlDocument
doc.LoadXml(xml)
Dim el As System.Xml.XmlElement = doc.DocumentElement
Dim url As String = el.InnerText