簡體   English   中英

PowerShell-合並JSON文件

[英]PowerShell- Merging JSON files

如何使用PowerShell將JSON文件的一個數組的對象復制到另一個JSON文件的數組? 例如,我有一個JSON文件,例如:

"type":  "Employee",
"Properties":  [
                  {
                      "Name":  "Raj",
                      "Id":  "18111",
                      "email":  "emp1@company.com",
                      "Position":  "Manager",
                      "DateOfJoining":  "16.10.14",
                   }
              ],
"Description":  "Employee details"

另一個JSON文件為:

"type": "Employee",
"Properties": [
    {
    "Name": "Ram",
    "Id": "44000",
    "email":  "emp2@company.com",
    "Position":  "Admin",
    "DateOfJoining":  "10.12.14",
    },      
    {
    "Name": "Paul",
    "Id": "44002",
    "email":  "emp3@company.com",
    "Position":  "Programmer",
    "DateOfJoining":  "10.9.14",
    },
],
"Description": "Employee details"

我想將數組從第一個JSON文件復制到第二個JSON文件。

您可以嘗試如下操作:

$c1 = Convert-FromJson (gc file1.json -raw)
$c2 = Convert-FromJson (gc file2.json -raw)
$c3 = $c1.Properties + $c2.Properties
$c3 | ConvertTo-Json

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM