标签: vb.net
所以,我一直在从网站上保存.txt文件并使用...
My.Computer.FileSystem.ReadAllText()
将它放入一个字符串中。 但我认为直接抓住它会更有效率。 我该怎么做?
谢谢。
答案 0 :(得分:2)
您需要使用WebClient class:
Using wc As New WebClient() myString = wc.DownloadString(someUrl) End Using