0
如何在vb.net中使用createDocumentFromUrl。如果我們想要解決這個問題,我得到了應該使用IPersistStreamInit接口的信息。所以我想要一個顯示這個的例子。vb.net中的mshtml HTMLDocument createDocumentFromUrl
如何在vb.net中使用createDocumentFromUrl。如果我們想要解決這個問題,我得到了應該使用IPersistStreamInit接口的信息。所以我想要一個顯示這個的例子。vb.net中的mshtml HTMLDocument createDocumentFromUrl
我不會推薦單獨進入該界面,但我猜你是在dll/cmd行這樣做,所以你不能使用winform解決方案,所以你可以使用htmlAgility包,你可以下載它作爲一的NuGet HtmlAgilityPack
,但如果你必須去互操作的方式,你可以看看這個問題Getting the HTML source from a WPF-WebBrowser-Control using IPersistStreamInit
而你唯一需要添加VB是這個
Public Overloads Sub Dispose() Implements IDisposable.Dispose
Dispose()
GC.SuppressFinalize(Me)
End Sub
但使用的靈活性包你可以d o像這樣:
Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.Net
Imports System.IO
Imports HtmlAgilityPack
Class Program
Private Shared Sub Main(args As String())
Dim wc As New WebClient()
Dim doc As New HtmlDocument()
doc.Load(wc.OpenRead("http://google.com"))
End Sub
End Class
請告知您選擇什麼樣的解決方案作爲其他人的指南,最好是作爲對答案的評論。 – Archlight