2

構造は次のとおりです。

   <foo>
        <bar> 
    <buildCommand>
        <name>com.android.ide.eclipse.adt.ApkBuilder</name>
        <arguments>
        </arguments>
    </buildCommand>
    <buildCommand>
        <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
        <triggers>auto,full,incremental,</triggers>
    </buildCommand>
        </bar>
   </foo>

これが私のロジックです。これは、削除するbuildCommand(2番目のもの)を識別し、それをリストに追加してから、削除を実行します。

import os;
import xml.etree.ElementTree as ET

document = ET.parse("foo"); 
root = document.getroot(); 
removeList = list()
for child in root.iter('buildCommand'): 
   if (child.tag == 'buildCommand'): 
      name = child.find('name').text
      if (name == 'org.eclipse.ui.externaltools.ExternalToolBuilder'):
          removeList.append(child)

for tag in removeList:
   root.remove(tag)

document.write("newfoo")

Python 2.7.1にはremoveコマンドがありますが、removeでエラーが発生します。

ファイル"/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/xml/etree/ElementTree.py"、行337、remove self._children.remove(element)ValueError:list.remove (x):xがリストにありません

アップデート:

* @martijn-pietersによって解決-2番目のforループの正しいロジックは

for tag in removeList:
   parent = root.find('bar')
   parent.remove(tag)
4

1 に答える 1

3

から要素を削除する必要があります。ただし、親への参照を直接取得する必要がありますが、子からバックアップするパスはありません。この場合、<bar>要素を見つけると同時に要素への参照を取得する必要があります<buildCommand>

タグはルートの直接の子ではないため、ルートからタグを削除しようとすると失敗します。

于 2013-03-23T10:57:04.673 に答える