发布于2025-01-18 21:46 阅读(968) 评论(0) 点赞(24) 收藏(5)
假设我有一个这样的 XML 文件 (bookstore.xml)
<bookstore>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="web">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<book category="web" cover="paperback">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
我想删除= JK Rowlingbook
的元素author
。
我知道我可以像这样获取所有与 author 匹配的元素 (Jython)
docFactory = DocumentBuilderFactory.newInstance()
docBuilder = docFactory.newDocumentBuilder()
doc = docBuilder.parse(bookstore.xml)
list = doc.getElementsByTagName("author")
我想将修改后的 XML 树写入 bookstore.xml。
谢谢 !
以下方法有效
for i in range(list.getLength()):
node = list.item(i)
if node != None and node.getNodeName() == "book":
children = node.getChildNodes()
for j in range(children.getLength()):
print "Looking for J K. Rowling in book"
child = children.item(j)
if child.getNodeName() == "author" and child.getTextContent() == "J K. Rowling":
print "************"
print "Found!!!!!"
print child.getNodeName()
print node.getTextContent()
node1= node.getParentNode().removeChild(child.getParentNode())
作者:黑洞官方问答小能手
链接:http://www.javaheidong.com/blog/article/695231/8bbd01f198db0d7f975b/
来源:java黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 java黑洞网 All Rights Reserved 版权所有,并保留所有权利。京ICP备18063182号-2
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!