DOM遍历.mht保存的网页

时间:2017-01-24 14:08:53

标签: .net powershell dom mhtml

是否可以在保存为.mht的网页中进行DOM遍历,或者保存为.htm(仅限html)?
最好是在powershell或.net中 目标是能够做getElementsByTagName('div')之类的事情 如果是,怎么样?

1 个答案:

答案 0 :(得分:1)

使用HtmlAgilityPack找到解决方案 可以在NuDoq上找到文档,post中提到了这些文档。

示例代码:

# Choose a source
$Source = 'C:\temp\myFile.mht'
$Source = 'http://www.google.com'

# Get online or mht content
$IE = New-Object -ComObject InternetExplorer.Application

# Don't show the browser
$IE.Visible = $false

# Browse to your webpage/file
$IE.Navigate($Source)

# Wait for page to load
while ($IE.busy) { Sleep -Milliseconds 50 }

# Get the html from that page
$Html = $IE.Document.body.parentElement.outerHTML

# Decode to get rid of html encoded characters like & etc...
$Html = [System.Web.HttpUtility]::HtmlDecode($Html)

# Close the browser
$IE.Quit()


# Use HtmlAgilityPack (must be installed first)
Add-Type -Path (Join-Path $Env:userprofile '.nuget\packages\htmlagilitypack\1.4.9.5\lib\Net40\HtmlAgilityPack.dll')
$Hap = New-Object HtmlAgilityPack.HtmlDocument

# Load the Html in HtmlAgilityPack to get a DOM
$Hap.LoadHtml($global:Html)

# Retrieve the data from the DOM (read a node)
[string]$partData = $Hap.DocumentNode.SelectSingleNode("//div[@class='formatted_content']/ul").InnerText
相关问题