久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

在 Python 中通過 ElementTree 解析 xml 時如何保留命名

How to preserve namespaces when parsing xml via ElementTree in Python(在 Python 中通過 ElementTree 解析 xml 時如何保留命名空間)
本文介紹了在 Python 中通過 ElementTree 解析 xml 時如何保留命名空間的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

假設我有以下想要使用 Python 的 ElementTree 修改的 XML:

Assume that I've the following XML which I want to modify using Python's ElementTree:

<root xmlns:prefix="URI">
  <child company:name="***"/>
  ...
</root> 

我正在對 XML 文件進行一些修改,如下所示:

I'm doing some modification on the XML file like this:

import xml.etree.ElementTree as ET
tree = ET.parse('filename.xml')
# XML modification here
# save the modifications
tree.write('filename.xml')

那么 XML 文件看起來像:

Then the XML file looks like:

<root xmlns:ns0="URI">
  <child ns0:name="***"/>
  ...
</root>

如您所見,namepsace prefix 更改為 ns0.我知道使用 ET.register_namespace() 提到 這里.

As you can see, the namepsace prefix changed to ns0. I'm aware of using ET.register_namespace() as mentioned here.

ET.register_namespace() 的問題在于:

  1. 你需要知道prefixURI
  2. 它不能與默認命名空間一起使用.

例如如果 xml 看起來像:

e.g. If the xml looks like:

<root xmlns="http://uri">
    <child name="name">
    ...
    </child>
</root>

它將被轉換為:

<ns0:root xmlns:ns0="http://uri">
    <ns0:child name="name">
    ...
    </ns0:child>
</ns0:root>

如您所見,默認命名空間更改為ns0.

As you can see, the default namespace is changed to ns0.

有沒有辦法用ElementTree解決這個問題?

Is there any way to solve this problem with ElementTree?

推薦答案

ElementTree 將替換那些未使用 ET.register_namespace 注冊的命名空間前綴.要保留命名空間前綴,您需要先注冊它,然后再將修改寫入文件.以下方法完成這項工作并在全局范圍內注冊所有命名空間,

ElementTree will replace those namespaces' prefixes that are not registered with ET.register_namespace. To preserve a namespace prefix, you need to register it first before writing your modifications on a file. The following method does the job and registers all namespaces globally,

def register_all_namespaces(filename):
    namespaces = dict([node for _, node in ET.iterparse(filename, events=['start-ns'])])
    for ns in namespaces:
        ET.register_namespace(ns, namespaces[ns])

這個方法應該在ET.parse方法之前調用,這樣命名空間將保持不變,

This method should be called before ET.parse method, so that the namespaces will remain as unchanged,

import xml.etree.ElementTree as ET
register_all_namespaces('filename.xml')
tree = ET.parse('filename.xml')
# XML modification here
# save the modifications
tree.write('filename.xml')

這篇關于在 Python 中通過 ElementTree 解析 xml 時如何保留命名空間的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Troubles while parsing with python very large xml file(使用 python 解析非常大的 xml 文件時出現問題)
Find all nodes by attribute in XML using Python 2(使用 Python 2 在 XML 中按屬性查找所有節點)
Python - How to parse xml response and store a elements value in a variable?(Python - 如何解析 xml 響應并將元素值存儲在變量中?)
How to get XML tag value in Python(如何在 Python 中獲取 XML 標記值)
How to correctly parse utf-8 xml with ElementTree?(如何使用 ElementTree 正確解析 utf-8 xml?)
Parse XML from URL into python object(將 XML 從 URL 解析為 python 對象)
主站蜘蛛池模板: 久久久久久国产精品免费免费 | 91精品国产乱码久久久 | 午夜免费视频观看 | 国产亚洲一区二区三区在线观看 | 国产精品3区 | 欧美高清视频在线观看 | 黄色一级网 | 国产精品久久久久久久岛一牛影视 | 国产精品视频网 | 成人免费黄色片 | 国产一级片精品 | 欧美一区二区三区在线视频 | 国产精品一区二区免费 | 亚洲最新在线 | 在线看国产 | 一级毛片免费视频观看 | 欧一区二区 | 成人在线精品视频 | 欧美日韩成人在线观看 | 午夜在线免费观看视频 | 伊人伊人 | 成人免费观看男女羞羞视频 | 亚洲啪啪一区 | 久久国产精品一区二区 | 一区二区成人在线 | 一区二区在线 | 国产美女黄色 | 欧美久久久久久 | 夜夜夜夜夜夜曰天天天 | 中文字幕高清一区 | 日韩欧美一区二区三区免费观看 | 午夜视频一区二区三区 | 色99视频| 午夜精品久久久久久久久久久久 | 最新中文字幕一区 | 亚州精品天堂中文字幕 | 国产日韩电影 | 男人的天堂在线视频 | 在线观看国产www | 国产目拍亚洲精品99久久精品 | 国产精品毛片久久久久久久 |