what's the fastest way to write XML

2019-04-23 13:51发布

I need create XML files frequently and I choose XmlWrite to do the job, I found it spent much time on things like WriteAttributeString ( I need write lots of attributes in some cases), my question is are there some better way to create xml files? Thanks in advance.

6条回答
女痞
2楼-- · 2019-04-23 13:55

Write it directly to a file via for example a FileStream (through manually created code). This can be made very fast, but also pretty hard to maintain. As always, optimizations comes with a prize tag.

Also, do not forget that "premature optimization is the root of all evil".

查看更多
男人必须洒脱
3楼-- · 2019-04-23 14:04

Fastest way that I know is two write the document structure as a plain string and parse it into an XDocument object:

string str =
@"<?xml version=""1.0""?>
<!-- comment at the root level -->
<Root>
    <Child>Content</Child>
</Root>";

XDocument doc = XDocument.Parse(str);
Console.WriteLine(doc);

Now you will have a structured and ready to use XDocument object where you can populate with your data. Also, you can even parse a fully structured and populated XML as string and start from there. Also you can always use structured XElements like this:

XElement doc =
  new XElement("Inventory",
    new XElement("Car", new XAttribute("ID", "1000"),
    new XElement("PetName", "Jimbo"),
    new XElement("Color", "Red"),
    new XElement("Make", "Ford")
  )
);
doc.Save("InventoryWithLINQ.xml");

Which will generate:

<Inventory>
  <Car ID="1000">
    <PetName>Jimbo</PetName>
    <Color>Red</Color>
    <Make>Ford</Make>
  </Car>
</Inventory>
查看更多
孤傲高冷的网名
4楼-- · 2019-04-23 14:04

Using anonymous types and serializing to XML is an interesting approach as mentioned here

查看更多
看我几分像从前
5楼-- · 2019-04-23 14:04

How much is much time...is it 10 ms, 10 sec or 10 min...and how much of the whole process that writes an Xml is it?

Not saying that you shouldn't optimize but imo it's a matter of how much time do you want to spend optimizing that slight bit of a process. In the end the faster you wanna go, the more complex it will be to maintain in this case (personal opinion).

查看更多
何必那么认真
6楼-- · 2019-04-23 14:08

I personally like to use XmlDocument type. It's still a bit heavy when writing nodes but attributes are one-liner, and all in all way simpler that using Xmlwrite.

查看更多
对你真心纯属浪费
7楼-- · 2019-04-23 14:09

XmlSerializer

You only have to define hierarchy of classes you want to serialize, that is all. Additionally you can control the schema through some attributes applied to your properties.

查看更多
登录 后发表回答