Powershell:通过WebClient获取网络上的资源

2024-10-12 09:17:22

1、创建WebClient对象:$web = New-Object System.Net.WebClient

2、设置文本的编码:$web.Encoding = [System.Text.Encoding]::UTF8

3、下载网页代码$str = $web.DownloadString("http://localhost")$str

4、获取文竭惮蚕斗件资源$url = "http://path.to/file"$file = &鳎溻趄酃quot;\\localpath\to\file"$web.DownloadFile($url,$file)

5、WebClient能够实现一个HTTP客户端,进而拓展的应用场景非常丰富,如 web自动化,网络爬虫,异步下载器等

猜你喜欢