8

我想在 PowerShell 中解析 JSON,但我不能使用 PowerShell 中可用的新 v3 函数。我的第一个想法是加载 JSON.Net 程序集并使用它来解析 JSON 字符串,但它并没有像我预期的那样工作。

我有这个 JSON:

$json = "{""Name"": ""Apple"",  
           ""Price"": 3.99,  
            ""Sizes"": [    
                 ""Small"",    
                 ""Medium"",
                 ""Large""]}"

我使用以下代码加载 JSON.NET 程序集:

[Reflection.Assembly]::LoadFile("$currentPath\Newtonsoft.Json.dll”)

并尝试用

$result = [Newtonsoft.Json.JsonConvert]::DeserializeObject($json)

现在我希望$result["Name"]是这样,Apple但我什么也没得到。有任何想法吗?

代码 ´$result.ContainsKey("Name") returnsTrue but$result.GetValue("Name") returnsnull`。

4

3 回答 3

13

好的,这就是我的做法,因此它至少可以在 Windows 2008 上运行到 PowerShell v2。

首先,为您想要使用的版本加载 Json.NET 程序集,我选择了 .NET 3.5 版本:

[Reflection.Assembly]::LoadFile("Newtonsoft.Json.dll")

我将 JSON 放在一个文件中,因为它用于我编写的部署配置中,所以我需要读取该文件,然后解析 json

$json = (Get-Content $FileName | Out-String) # read file
$config = [Newtonsoft.Json.Linq.JObject]::Parse($json) # parse string

现在要从配置中获取值,您需要使用Item似乎由 PowerShell 在哈希表/字典上定义的方法。因此,要获得一个简单字符串的项目,您可以编写:

Write-Host $config.Item("SomeStringKeyInJson").ToString()

如果你有很多事情,你需要做类似的事情

$config.Item("SomeKeyToAnArray") | ForEach-Object { Write-Host $_.Item("SomeKeyInArrayItem").ToString() }

访问您编写的嵌套项目

$config.Item("SomeItem").Item("NestedItem")

这就是我在 PowerShell 中使用 Json.NET 解析 JSON 的方法。

于 2012-12-21T12:13:38.910 回答
8

如果你到了这里并且使用的是 Powershell 5.0,它可以在powershell 库中找到

Install-Module Newtonsoft.Json
Import-Module Newtonsoft.Json

$json = '{"test":1}'
[Newtonsoft.Json.Linq.JObject]::Parse($json)
于 2019-06-13T00:10:39.900 回答
5

也许这就是你所追求的:

http://poshcode.org/2930

    function Convert-JsonToXml {
PARAM([Parameter(ValueFromPipeline=$true)][string[]]$json)
BEGIN { 
   $mStream = New-Object System.IO.MemoryStream 
}
PROCESS {
   $json | Write-Stream -Stream $mStream
}
END {
   $mStream.Position = 0
   try
   {
      $jsonReader = [System.Runtime.Serialization.Json.JsonReaderWriterFactory]::CreateJsonReader($mStream,[System.Xml.XmlDictionaryReaderQuotas]::Max)
      $xml = New-Object Xml.XmlDocument
      $xml.Load($jsonReader)
      $xml
   }
   finally
   {
      $jsonReader.Close()
      $mStream.Dispose()
   }
}
}

function Write-Stream {
PARAM(
   [Parameter(Position=0)]$stream,
   [Parameter(ValueFromPipeline=$true)]$string
)
PROCESS {
  $bytes = $utf8.GetBytes($string)
  $stream.Write( $bytes, 0, $bytes.Length )
}  
}



$json = '{
    "Name": "Apple",
    "Expiry": 1230422400000,
    "Price": 3.99,
    "Sizes": [
        "Small",
        "Medium",
        "Large"
    ]
}'

Add-Type -AssemblyName System.ServiceModel.Web, System.Runtime.Serialization
$utf8 = [System.Text.Encoding]::UTF8                 
(convert-jsonToXml $json).innerXML

输出 :

<root type="object"><Name type="string">Apple</Name><Expiry type="number">1230422
400000</Expiry><Price type="number">3.99</Price><Sizes type="array"><item type="s
tring">Small</item><item type="string">Medium</item><item type="string">Large</it
em></Sizes></root>

如果你想要名称节点:

$j=(convert-jsonToXml $json)
$j.SelectNodes("/root/Name")

或者

$j |Select-Xml -XPath "/root/Name" |select -ExpandProperty node
于 2012-12-20T08:39:35.263 回答