Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
530 views
in Technique[技术] by (71.8m points)

c# - When is it OK to use an XML file to save information?

What reason could there be for using an XML to save information?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

There could be lots of reasons: like any other file format, it has pros and cons:

Pros:

  • .Net natively supports serializing your objects to xml, and deserializing them back again.
  • It is more readable and descriptive to the human eye than a binary format or JSON
  • It is easily validated against a schema to ensure it is in the correct format.
  • It can be loaded and parsed with other tools.
  • It is easily interchangeable with other platforms/languages, unlike the native .Net binary serialization format
  • It can be transformed, and you can run xpath over it.

Cons:

  • It is more verbose than either the native .Net binary serialization format, or JSON
  • It doesn't store type information about the classes that were deserialized into xml, whereas a the native binary format does.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...