如何处理从 powershell 上的 HTTP GET 检索到的 XML 上需要 UTF-8 的字符?

如何处理从 powershell 上的 HTTP GET 检索到的 XML 上需要 UTF-8 的字符?

我无法通过 powershell 上的 HTTP GET 请求检索 UTF-8 编码下的数据。

代码:

$headers_tables=@{}
$headers_tables.Add("content-type", "application/xml; charset=utf-8")
$xml_employee_future_jobinfo = Invoke-WebRequest -Uri $url_employee_future_jobinfo -Method GET -Headers $headers_tables

输出:

<?xml version="1.0"?>
<table>
 <row id="2968" employeeId="839">
  <field id="date">2022-11-28</field>
  <field id="location">X</field>
  <field id="department">D</field>
  <field id="division">Infrastructure &amp; IT</field>
  <field id="jobTitle">Z</field>
  <field id="reportsTo">X Poli??ski</field>
 </row>
</table>

如果我在浏览器上打开此 API 链接,我就能够看到预期的 XML,其中包含特殊字符和重音。

我该如何解决这个问题?

先感谢您!

答案1

这是我发现的处理 XML、将其导出到文件并在 UTF-8 下读取它的方法:

$headers_tables=@{}
Invoke-WebRequest -Uri $url_employee_future_jobinfo -Method GET -Headers $headers_tables -OutFile "C:\Scripts\Power_Automate\xmldump_jobinfo.xml"
[xml]$xml_employee_future_jobinfo = get-content "C:\Scripts\Power_Automate\xmldump_jobinfo.xml" -Encoding "utf8"
Write-Host "XML: "
$xml_employee_future_jobinfo.table.row.field

输出:

id         #text              
--         -----              
date       2022-11-28         
location   X
department D
division   Infrastructure & IT
jobTitle   Z    
reportsTo  X Poliński

相关内容