我已經嘗試了2種方法來替換XML文件中給定節點內的值,它不工作。python替換xml值
我的文件:
<?xml version="1.0" encoding="UTF-8"?>
<OrdSet xmlns="tfs" xmlns:xsi="http://www.sample.org/XMLSchema-instance" xsi:schemaLocation="tfs tfs.xsd" Version="25">
<Msg>
<MsgCreate>
<Date>20160324</Date>
<Time>111057</Time>
<Src>
<SrcType>D</SrcType>
<DlrCode>0001</DlrCode>
</Src>
<Target>
<TargetType>F</TargetType>
<MgmtCode>BTG</MgmtCode>
</Target>
</MsgCreate>
<MsgType>
<OrdReq>
<ActnCode>NEW</ActnCode>
<SrcID>64698602107101</SrcID>
<RepCode>0000</RepCode>
<OrdDtl>
<AcctLookup>
<MgmtCode>ABC</MgmtCode>
<FundAcctID>984575</FundAcctID>
<AcctDesig>2</AcctDesig>
</AcctLookup>
<TrxnDtl>
<Buy>
<TrxnTyp>5</TrxnTyp>
<FundID>205</FundID>
<Amt>
<AmtType>D</AmtType>
<AmtValue>600.00</AmtValue>
</Amt>
</Buy>
</TrxnDtl>
</OrdDtl>
</OrdReq>
</MsgType>
</Msg>
omitted ...
我的目標是到ActnCode值替換從新到CAN。
I.e., <ActnCode>CAN</ActnCode>
嘗試#1:腳本運行良好,但數值仍然是 「新建」,在輸出文件中。似乎沒有任何改變。
import xml.etree.ElementTree as ET
tree = ET.parse("~\input.xml")
root = tree.getroot()
elems = tree.findall('ActnCode')
for elem in elems:
\t elem.txt = 'CAN'
tree.write("~\output.xml")
嘗試#2:腳本正確運行很好,但如預期它不工作。
xmldoc = minidom.parse('~input.xml')
action_code = xmldoc.getElementsByTagName('ActnCode')
firstchild = action_code[0]
firstchild.setAttribute('ActnCode', 'CAN')
result:
<ActnCode ActnCode="CAN">NEW</ActnCode>
最後,我想蟒蛇通過XML文檔看,發現所有ActnCode節點,將值更改爲 「CAN」。任何幫助將不勝感激。
這在XSLT中是微不足道的。你可以使用*** lxml ***代替etree來運行XSLT轉換嗎? –