0
我想用Matlab獲得完整的網頁代碼,但函數urlread只返回html代碼。是否有任何解決方案來獲取完整頁面代碼,就像我在瀏覽器中使用「另存爲」一樣下載它?從Matlab獲取網頁html和css代碼
謝謝。
我想用Matlab獲得完整的網頁代碼,但函數urlread只返回html代碼。是否有任何解決方案來獲取完整頁面代碼,就像我在瀏覽器中使用「另存爲」一樣下載它?從Matlab獲取網頁html和css代碼
謝謝。
在MS Windows,你可以使用
ie = actxserver('internetexplorer.application')
ie.Navigate('http://sample.com/mydocument.html')
ie.ExecWB(4,2,'foo.html')
用於ExecWB的說明,請參見saving-a-web-page-from-ie-using-powershell()。 你可能沒有擺脫提示,所以沒有自動化。
你想得到什麼?資產? –
什麼plattform(MS Windows | Linux)? –
我想獲得頁面的html,css和javascript代碼,但urlread只提供html。如果我在瀏覽器中選擇「另存爲」選項,我可以得到這個,但不知道如何從Matlab做到這一點。也許還有其他一些選擇。 – Adrian