gpt4 book ai didi

xml - 使用PowerShell,如何使用多个 namespace

转载 作者:行者123 更新时间:2023-12-02 23:44:19 24 4
gpt4 key购买 nike

我想用这样的多个命名空间创建一个XML文件。我需要在标签的开头插入正确的前缀

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
<HXT:Sending xmlns:HXT="http://www.HiTooT.com/HXT-Rec">
<O2:Info xmlns:O2="urn:osis:names:specification:gtr:schema:xsd:Info-2" xmlns:dad="urn:osis:names:specification:gtr:schema:xsd:AggregateInfo" xmlns:dbd="urn:osis:names:specification:gtr:schema:xsd:BasicInfo">
<dad:ID>12015</dad:ID>
<dbd:IssueDate>05032015</dbd:IssueDate>
<dbd:TypeCode>ORA_PF</dbd:TypeCode>
</O2:Info>
</HXT:Sending>

这个powershell代码
$XMLFilePath = "c:\tmp\test1.xml"

#---Create empty XML File
New-Item $XMLFilePath -Type File -Force | Out-Null

#---Creating Base Structure
$XMLFile = New-Object XML
[System.XML.XMLDeclaration]$XMLDeclaration = $XMLFile.CreateXMLDeclaration("1.0", "UTF-8", "yes")
$XMLFile.AppendChild($XMLDeclaration) | Out-Null

#---RootObject
$Sending = $XMLFile.CreateElement("HXT", "Sending", "http://www.HiTooT.com/HXT-Rec")
$XMLFile.AppendChild($Sending)


#Order node
$Info = $XMLFile.CreateElement("Info");

$Info.SetAttribute("xmlns:O2", "urn:osis:names:specification:gtr:schema:xsd:Info-2")
$Info.SetAttribute("xmlns:dad", "urn:osis:names:specification:gtr:schema:xsd:AggregateInfo")
$Info.SetAttribute("xmlns:dbd", "urn:osis:names:specification:gtr:schema:xsd:BasicInfo")

$Sending.AppendChild($Info)
#---

$ID = $XMLFile.CreateElement("ID")
$ID.InnerText = "12015"
$Info.AppendChild($ID)

$IssueDate = $XMLFile.CreateElement("cbc:IssueDate")
$IssueDate.InnerText = "05032015"
$Info.AppendChild($IssueDate)

$TypeCode = $XMLFile.CreateElement("TypeCode")
$TypeCode.InnerText = "ORA_PF"
$Info.AppendChild($TypeCode)

$XMLFile.Save($XMLFilePath);

notepad $XMLFilePath

只能这样做
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<HXT:Sending xmlns:HXT="http://www.HiTooT.com/HXT-Rec">
<Info xmlns:O2="urn:osis:names:specification:gtr:schema:xsd:Info-2" xmlns:dad="urn:osis:names:specification:gtr:schema:xsd:AggregateInfo" xmlns:dbd="urn:osis:names:specification:gtr:schema:xsd:BasicInfo">
<ID>12015</ID>
<IssueDate>05032015</IssueDate>
<TypeCode>ORA_PF</TypeCode>
</Info>
</HXT:Sending>

如何添加正确的前缀?

最佳答案

您是否尝试过像这样创建$ info元素:

#Order node
$Info = $XMLFile.CreateElement("O2", "Info", "urn:osis:names:specification:gtr:schema:xsd:Info-2")

对我来说,它给出了:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<HXT:Sending xmlns:HXT="http://www.HiTooT.com/HXT-Rec">
<O2:Info xmlns:O2="urn:osis:names:specification:gtr:schema:xsd:Info-2" xmlns:dad="urn:osis:names:specification:gtr:schema:xsd:AggregateInfo" xmlns:dbd="urn:osis:names:specification:gtr:schema:xsd:BasicInfo">
<ID>12015</ID>
<IssueDate>05032015</IssueDate>
<TypeCode>ORA_PF</TypeCode>
</O2:Info>
</HXT:Sending>

更新以说明如何在内部标签前面加上前缀:

您可以对内部标签使用相同的调用,因为该属性在父节点中出现一次,所以不会重复该属性。
$ID = $XMLFile.CreateElement("O2", "ID", "urn:osis:names:specification:gtr:schema:xsd:Info-2")

关于xml - 使用PowerShell,如何使用多个 namespace ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30135937/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com