简体   繁体   English

XDocument.Save()在每个XElement上添加不需要的命名空间

[英]XDocument.Save() add unwanted namespace on each XElement

I have the following XML : 我有以下XML:

<?xml version="1.0" encoding="UTF-8"?>
<tt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     
    xmlns="http://www.w3.org/ns/ttml" 
    xmlns:tt="http://www.w3.org/ns/ttml"     
    xmlns:tts="http://www.w3.org/ns/ttml#styling"
    xmlns:ttp="http://www.w3.org/ns/ttml#parameter" xml:lang="fr-FR"
    ttp:timeBase="smpte" ttp:frameRate="24" ttp:frameRateMultiplier="999 1000" ttp:dropMode="nonDrop">
  <head>
    <styling>
      <style xml:id="normal" tts:fontFamily="sansSerif" tts:fontWeight="normal" tts:fontStyle="normal" tts:color="white" tts:fontSize="100%"/>
      <style xml:id="bold" tts:fontFamily="sansSerif" tts:fontWeight="bold" tts:fontStyle="normal" tts:color="white" tts:fontSize="100%"/>
      <style xml:id="italic" tts:fontFamily="sansSerif" tts:fontWeight="normal" tts:fontStyle="italic" tts:color="white" tts:fontSize="100%"/>
      <style xml:id="bolditalic" tts:fontFamily="sansSerif" tts:fontWeight="bold" tts:fontStyle="italic" tts:color="white" tts:fontSize="100%"/>
    </styling>

When I load it with XDocument.Load() then save it with XDocument.Save() without any changes, the new XML file I have is as follows: 当我加载它XDocument.Load()然后将其保存XDocument.Save()没有任何变化,新的XML文件,我有如下:

<?xml version="1.0" encoding="utf-8"?>
<tt:tt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://www.w3.org/ns/ttml" xmlns:tt="http://www.w3.org/ns/ttml"
       xmlns:tts="http://www.w3.org/ns/ttml#styling"
       xmlns:ttp="http://www.w3.org/ns/ttml#parameter"
       xml:lang="fr-FR" ttp:timeBase="smpte"     ttp:frameRate="24" ttp:frameRateMultiplier="999 1000" ttp:dropMode="nonDrop">
  <tt:head>
    <tt:styling>
      <tt:style xml:id="normal" tts:fontFamily="sansSerif" tts:fontWeight="normal"     tts:fontStyle="normal" tts:color="white" tts:fontSize="100%" />
      <tt:style xml:id="bold" tts:fontFamily="sansSerif" tts:fontWeight="bold"     tts:fontStyle="normal" tts:color="white" tts:fontSize="100%" />
      <tt:style xml:id="italic" tts:fontFamily="sansSerif" tts:fontWeight="normal"     tts:fontStyle="italic" tts:color="white" tts:fontSize="100%" />
      <tt:style xml:id="bolditalic" tts:fontFamily="sansSerif" tts:fontWeight="bold"     tts:fontStyle="italic" tts:color="white" tts:fontSize="100%" />
    </tt:styling>

Is there an elegant way to load and save this kind of XML without changing anything? 是否有一种优雅的方式来加载和保存这种XML而不改变任何东西?

Thanks! 谢谢!

As Pascal said, the problem comes from xmlns="w3.org/ns/ttml" and xmlns:tt="w3.org/ns/ttml" . 正如Pascal所说,问题来自xmlns="w3.org/ns/ttml"xmlns:tt="w3.org/ns/ttml" I think XDocument.Save generate this xml because the default xml namespace is duplicated with another namespace. 我认为XDocument.Save生成这个xml,因为默认的xml命名空间与另一个命名空间重复。 (Namespaces are maybe more identified by valeu than by key ?) (命名空间可能更多地通过valeu而不是通过密钥来识别?)

First Option is to remove the duplicate in your input file. 第一个选项是删除输入文件中的副本。 Using this new version, you won't have any problems. 使用这个新版本,您将不会遇到任何问题。

<?xml version="1.0" encoding="UTF-8"?>
<tt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     
    xmlns="http://www.w3.org/ns/ttml"    
    xmlns:tts="http://www.w3.org/ns/ttml#styling"
    xmlns:ttp="http://www.w3.org/ns/ttml#parameter" xml:lang="fr-FR"
    ttp:timeBase="smpte" ttp:frameRate="24" ttp:frameRateMultiplier="999 1000" ttp:dropMode="nonDrop">
  <head>
    <styling>
      <style xml:id="normal" tts:fontFamily="sansSerif" tts:fontWeight="normal" tts:fontStyle="normal" tts:color="white" tts:fontSize="100%"/>
      <style xml:id="bold" tts:fontFamily="sansSerif" tts:fontWeight="bold" tts:fontStyle="normal" tts:color="white" tts:fontSize="100%"/>
      <style xml:id="italic" tts:fontFamily="sansSerif" tts:fontWeight="normal" tts:fontStyle="italic" tts:color="white" tts:fontSize="100%"/>
      <style xml:id="bolditalic" tts:fontFamily="sansSerif" tts:fontWeight="bold" tts:fontStyle="italic" tts:color="white" tts:fontSize="100%"/>
    </styling>

Second option is to remove the duplicate namespace somewhere before the save 第二个选项是在保存之前删除重复的命名空间

doc.Root.Attributes(XName.Get("tt", @"http://www.w3.org/2000/xmlns/")).Remove();

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM