zoukankan      html  css  js  c++  java
  • How to: Write Object Data to an XML File

    This example writes the object from a class to an XML file using the XmlSerializer class.

    Namespace:   System.Xml.Serialization
    Assembly:  System.Xml (in System.Xml.dll)

    Example

    This code example defines a class named Book, creates an instance of the class, and uses XML serialization to write the instance to an XML file.

    Code similar to this is available as an IntelliSense code snippet. In the Code Snippet Manager, it is located in XML. For more information, see Code Snippets.

    public class XMLWrite
    {
    
       static void Main(string[] args)
        {
            WriteXML();
        }
    
    
        public class Book
        {
            public String title; 
        }
    
    
        public static void WriteXML()
        {
            Book overview = new Book();
            overview.title = "Serialization Overview";
            System.Xml.Serialization.XmlSerializer writer = 
                new System.Xml.Serialization.XmlSerializer(typeof(Book));
    
            var path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "//SerializationOverview.xml";
            System.IO.FileStream file = System.IO.File.Create(path);
    
            writer.Serialize(file, overview);
            file.Close();
        }
    }

    Compiling the Code

    The class must have a public constructor without parameters.

    Robust Programming

    The following conditions may cause an exception:

    .NET Framework Security

    This example creates a new file, if the file does not already exist.

    If an application needs to create a file, that application needs Create access for the folder.

    If the file already exists, the application needs only Write access, a lesser privilege.

    Where possible, it is more secure to create the file during deployment, and only grant Read access to a single file, rather than Create access for a folder.

  • 相关阅读:
    冲刺第十三天
    冲刺第十二天
    冲刺第十一天
    Android Studio三种运行方法
    第十三周学习进度
    冲刺第一阶段意见评论
    第十二周学习进度
    冲刺第十天
    大二暑假周总结(五)
    大二暑假周总结(四)
  • 原文地址:https://www.cnblogs.com/chucklu/p/5145520.html
Copyright © 2011-2022 走看看