0

結果を比較オブジェクトから csv にエクスポートしようとしていますが、エクスポートするとエラーが発生します。Excelで呼び出すと問題ないようです。私の推測では、複数の値の出力がある場合は常に、値の代わりにエラーが配置されます。

これが私のcsvです past.csv

VKEY
V-12345
V-23456
V-1111

現在の.csv

VKEY
V-12345
V-6789
V-23456
V-256

私の新しいcsvは言うべきです

Past, Current
V-6789,V-1111
V-256

私が今得ているのは

Past, Current
System.Object[],@{vkey=V-1111}

.

$Past = Import-CSV "past.csv"
$Current = Import-CSV "Current.csv"

$pastchange = Compare-Object $Past $Current -Property vkey | Where-Object {$_.SideIndicator -eq '=>'} | Select-Object VKEY
$currentchange = Compare-Object $Past $Current -Property vkey | Where-Object {$_.SideIndicator -eq '<='} | Select-Object VKEY

$obj = New-Object PSObject
$obj | Add-Member NoteProperty Past $pastchange
$obj | Add-Member NoteProperty Current $currentchange
$obj | Export-Csv "ChangeResults.csv" -NoTypeInformation
4

1 に答える 1

1

System.Object[]列に表示されるのは、列$obj.Pastに似たカスタム オブジェクトの配列です。証明:@{vkey=V-1111}$obj.Past

PS D:\PShell> $obj
$obj.Past.Gettype() | Format-Table
$obj.Current.Gettype()
"---"
$obj.Past | ForEach-Object { $_.Gettype() }

Past                                       Current                                  
----                                       -------                                  
{@{vkey=V-6789}, @{vkey=V-256}}            @{vkey=V-1111}                           

IsPublic IsSerial Name                                     BaseType                 
-------- -------- ----                                     --------                 
True     True     Object[]                                 System.Array             

IsPublic IsSerial Name                                     BaseType                 
-------- -------- ----                                     --------                 
True     False    PSCustomObject                           System.Object            
---
True     False    PSCustomObject                           System.Object            
True     False    PSCustomObject                           System.Object            

私のソリューションはArrayList クラス (.NETフレームワーク)を利用します:

$csvOutFile = "d:\test\ChangeResults.csv"    # change to fit your circumstances
$PastInFile = "d:\test\past.csv"
$CurrInFile = "d:\test\curr.csv"

$Past = Import-CSV $PastInFile
$Curr = Import-CSV $CurrInFile

# compare CSV files and convert results to arrays
$PastCh=@(,                                     <# always return an array           #>
            $( Compare-Object $Past $Curr -Property vkey | 
                 Where-Object { $_.SideIndicator -eq '=>' } ) |
             ForEach-Object { $_ | Select-Object -ExpandProperty vkey }
          )
$CurrCh=@(,                                     <# even if no SideIndicator matches #>
            $( Compare-Object $Past $Curr -Property vkey | 
                 Where-Object { $_.SideIndicator -eq '<=' } ) |
             ForEach-Object { $_ | Select-Object -ExpandProperty vkey }
          )

[System.Collections.ArrayList]$csvout = New-Object System.Collections.ArrayList($null)
$auxHash = @{}                                       # an auxiliary hash object

$max = ($CurrCh.Count, $PastCh.Count | Measure-Object -Maximum).Maximum
for ($i=0; $i -lt $max; $i++) {
    Try { $auxHash.Past = $PastCh.GetValue($i) } Catch { $auxHash.Past = '' }
    Try { $auxHash.Curr = $CurrCh.GetValue($i) } Catch { $auxHash.Curr = '' }
    $csvout.Add((New-Object PSObject -Property $auxHash)) > $null
}
$csvout | Format-Table -AutoSize      #  show content: 'variable $csvout'

$csvout | Export-Csv $csvOutFile -NoTypeInformation 
Get-Content $csvOutFile               #  show content: "output file $csvOutFile"

出力:

PS D:\PShell> D:\PShell\SO\37753277.ps1

Past   Curr  
----   ----  
V-6789 V-1111
V-256        


"Past","Curr"
"V-6789","V-1111"
"V-256",""

PS D:\PShell> 

TryCatchブロックの代替案は次のとおりです。

    <# another approach instead of `Try..Catch`:
    if ($i -lt $PastCh.Count) { $auxHash.Past = $PastCh.GetValue($i)
                       } else { $auxHash.Past = '' }
    if ($i -lt $CurrCh.Count) { $auxHash.Curr = $CurrCh.GetValue($i)
                       } else { $auxHash.Curr = '' }
    #>
于 2016-06-11T11:05:20.420 に答える