[python]批量修改xml中属性及字段的实现需求描述
批量修改当前⽂件夹下所有的xml⽂件中的版本号字段,修改componentVersion字段对应的版本号内容xml⽂件
<?xml version="1.0" ?><CONTENT date="2021-12-09" version="1.0">
<Generate>11111</Generate>
<Info>
<Project>aaaaa</Project>
<componentVersion>1.0</componentVersion>
<Customer>CN</Customer>
五一劳动节的祝福语</Info>
</CONTENT>
<?xml version="1.0" ?><CONTENT date="2021-12-09" version="1.0">
<Generate>333333</Generate>
<Type>000</Type>
<Info>
悄无声息的反义词<Project>ccccc</Project>
<componentVersion>1.0</componentVersion>
缉魂结局什么意思<Customer>CN</Customer>
</Info>
</CONTENT>
<?xml version="1.0" ?><CONTENT date="2021-12-09" version="1.0">
<Generate>11111</Generate>计算机二级考哪个科目比较好
<Info>
<Project1>bbbbb</Project1>
<Project2>bbbbb</Project2>
<Project3>bbbbb</Project3>
<Project4>bbbbb</Project4>
<componentVersion>1.0</componentVersion>
<Customer>CN</Customer>
</Info>
</CONTENT>
元曲名句
python实现代码
test.py
#coding=utf-8
import sys
import xml.dom.minidom
import os
#获取传⼊的版本号,sys.argv[0]是python的⽂件名称
version=sys.argv[1]
print 'New version' +'='+version
for root,dirs, files in os.walk("./"):
print files #get current files
for sfile in files:
if os.path.splitext(sfile)[1] == '.xml': #只修改xml⽂件
#print sfile
#打开xml⽂档
dom = xml.dom.minidom.parse(sfile)
#得到⽂档元素对象
#root = dom.documentElement
ElementsByTagName('componentVersion') c1=componementVersion[0]
print ">---------------------<"
组词霎print sfile
print "Old Version:"+c1.firstChild.data
c1.firstChild.data=version
print "New Version:"+c1.firstChild.data
with open(os.path.join("./",sfile),'w') as fh: #write to xml file
dom.writexml(fh)
print ">----------end-----------<"
执⾏修改
root@virtual-machine:/home/test_old# python test.py 1.2
1.2
New version=1.2
['l', 'l', 'test.py', 'l']
>---------------------<
Old Version:1.0
New Version:1.2
>---------------------<
Old Version:1.0
New Version:1.2
>---------------------<
Old Version:1.0
New Version:1.2
>----------end-----------<
查看xml⽂件中所有componentVersion对应的版本号,实测已经修改
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论