手机
当前位置:查字典教程网 >脚本专栏 >PowerShell >Powershell 获取特定的网页信息的代码
Powershell 获取特定的网页信息的代码
摘要:Powershell可以很轻松的获取网页的信息并读取到对应的内容。如果对象的格式是XML或者Json,那就更容易处理了,一般经常使用invo...

Powershell可以很轻松的获取网页的信息并读取到对应的内容。如果对象的格式是XML或者Json,那就更容易处理了,一般经常使用invoke-restmethod和invoke-webrequest这两个命令。前者主要是获取Json格式的内容,后者可以获取整个网页的内容。

比如说我希望查询明天悉尼的天气如何。网上随便搜了一个提供API的站点

http://openweathermap.org/current#name

我打算搜索悉尼的,那么对应的格式是

http://api.openweathermap.org/data/2.5/weather?q=sydney,au他会自动生成一个Json格式的结果。

Powershell 获取特定的网页信息的代码1

我们可以用invoke-restmethod直接获取这个结果,比如说

$b=invoke-restmethod "http://api.openweathermap.org/data/2.5/weather" $c=[pscustomobject]@{ 'Description'=$b.weather.description 'name'=$b.name 'windspeed'=$b.wind.speed }

Powershell 获取特定的网页信息的代码2

我也可以直接使用invoke-webrequest抓取整个网页的内容,然后从Json的格式转换过来也是一样的

$a= Invoke-WebRequest -Uri "http://api.openweathermap.org/data/2.5/weather"$b=$a.Content | ConvertFrom-Json

类似的,如果我想获取一个博客的RSS的最新内容。可以使用invoke-webrequest抓取对应的XML文件,比如

[xml]$a= Invoke-WebRequest -Uri "http://blogs.msdn.com/b/powershell/rss.aspx“$a.rss.channel.Item | select title,pubdate

Powershell 获取特定的网页信息的代码3

功能很强大,使用却很简单。

本文出自 “麻婆豆腐” 博客

【Powershell 获取特定的网页信息的代码】相关文章:

Powershell中获取所有磁盘盘符的方法

Powershell小技巧之获取对象可变的特征

PowerShell获取当前进程PID的小技巧

PowerShell实现批量重命名文件

Powershell获取系统中所有可停止的服务

PowerShell中获取当前运行脚本路径的方法

Powershell中可以使用的.Net实用静态方法

Powershell脚本的4种执行权限介绍

PowerShell ISE自动化简单示例

Powershell小技巧之去除多余的空格

精品推荐
分类导航