Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
VB 脚本的新手,我希望升级到赛门铁克。但是要做到这一点,我需要查看特定 IP 的 sylink.xml 文件。如果存在,我可以进行升级。我试图将其视为文本文件,但我什至无法读取我创建的仅包含 IP 的测试文本文件。任何帮助,将不胜感激。
这是一个容易被加载的xml文件。一旦您知道要搜索的元素名称,就很容易了。在我的示例中,ipaddress 位于名为 的元素中ipAdress。
xml
ipAdress
Dim x As XElement = XElement.Parse({xml string}) Dim ip As String = x...<ipAdress>.FirstOrDefault.Value