6

下面脚本中的第 2 行生成 -

“无法将值“System.Object[]”转换为类型“System.Xml.XmlDocument”。错误:“'→',十六进制值 0x1A,是无效字符。第 39 行,第 23 位。”

在 line:1 char:8 + [xml]$x <<<< = Get-Content 4517.xml + CategoryInfo : MetadataError: (:) [], ArgumentTransformationMetadataException + FullyQualifiedErrorId : RuntimeException"

应该在(脚本的)第 4 行指定什么异常来捕获上述错误?

try {
    [xml]$xml = Get-Content $file # line 2
}
catch [?] {                       # line 4
    echo "XML parse error!"
    # handle the parse error differently
}
catch {
    echo $error
    # some general error
}

感谢您的关注(和回答)

阿德里安

4

2 回答 2

5

这是一种发现异常的完整类型名称的方法,这里的结果给出了@Adrian Wright 给出的 System.Management.Automation.ArgumentTransformationMetadataException。

Clear-Host
try {
    [xml]$xml = Get-Content "c:\Temp\1.cs" # line 2
}
catch {
    # Discovering the full type name of an exception
    Write-Host $_.Exception.gettype().fullName
    Write-Host $_.Exception.message
}
于 2012-05-03T04:03:00.083 回答
3

System.Management.Automation.ArgumentTransformationMetadataException

于 2012-05-01T19:49:46.563 回答