转帖不会乱码的,powershell网络蜘蛛
生活随笔
收集整理的這篇文章主要介紹了
转帖不会乱码的,powershell网络蜘蛛
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
抓取(爬取)網上信息的腳本程序,俗稱網絡蜘蛛。
powershell中自帶了這樣的兩個命令,【Invoke-WebRequest】和【Invoke-RestMethod】,但這兩個命令有時候會亂碼。
現在轉帖分享, 某個【歪果仁】寫的腳本。來源于 墻外出處: https://gist.github.com/angel-vladov/9482676
function Read-HtmlPage { param ([Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)][String] $Uri)# Invoke-WebRequest and Invoke-RestMethod can't work properly with UTF-8 Response so we need to do things this way. [Net.HttpWebRequest]$WebRequest = [Net.WebRequest]::Create($Uri) [Net.HttpWebResponse]$WebResponse = $WebRequest.GetResponse() $Reader = New-Object IO.StreamReader($WebResponse.GetResponseStream()) $Response = $Reader.ReadToEnd() $Reader.Close()# Create the document class [mshtml.HTMLDocumentClass] $Doc = New-Object -com "HTMLFILE" $Doc.IHTMLDocument2_write($Response)# Returns a HTMLDocumentClass instance just like Invoke-WebRequest ParsedHtml $Doc#powershell 傳教士 轉帖并修改的文章 2016-01-01, 允許再次轉載,但必須保留名字和出處,否則追究法律責任 }?
?具體效果請大家共同測試。
?
轉載于:https://www.cnblogs.com/piapia/p/5093201.html
總結
以上是生活随笔為你收集整理的转帖不会乱码的,powershell网络蜘蛛的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 跨域访问-JSONP
- 下一篇: 编程心得03