回答powershell 调用cmdlet写文件,再从文件读取数据2015年6月25日 来自 Mooser Lee # 构造数据 $data= @{name=" Lily" age=18 } # 保存数据 $workfile = "workfile.json" $data |ConvertTo-Json | Out-File $workfile # 读数据 $readData = ConvertFrom-Json (Get-Content $workfile -Raw) $readData.name $readData.age