系列5:序列化與還原序列化

來源:互聯網
上載者:User

代碼範例;

 

Code
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

// The binary formatter is in mscorlib.dll
using System.Runtime.Serialization.Formatters.Binary;

// Must reference System.Runtime.Serialization.Formatters.Soap.dll!
using System.Runtime.Serialization.Formatters.Soap;

// XML formatter is also in mscorlib.dll.
using System.Xml.Serialization;

using System.Collections;

namespace SimpleSerialization
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("***** Fun with Object Serialization *****\n");

            // Make a JamesBondCar and set state.
            JamesBondCar jbc = new JamesBondCar();
            jbc.canFly = true;
            jbc.canSubmerge = false;
            jbc.theRadio.stationPresets = new double[]{89.3, 105.1, 97.1};
            jbc.theRadio.hasTweeters = true;

            #region BinaryFormatter Logic
            // Save object to a file named CarData.dat in binary.
            BinaryFormatter binFormat = new BinaryFormatter();
            Stream fStream = new FileStream("CarData.dat",
                 FileMode.Create, FileAccess.Write, FileShare.None);
            binFormat.Serialize(fStream, jbc);
            fStream.Close();
            Console.WriteLine("-> Saved JamesBondCar in binary format.");

            // Read the JamesBondCar from the binary stream.
            fStream = File.OpenRead("CarData.dat");
            JamesBondCar carFromDisk =
                 (JamesBondCar)binFormat.Deserialize(fStream);
            Console.WriteLine("Can this car fly? : {0}", carFromDisk.canFly);
            fStream.Close(); 
            #endregion

            #region SoapFormatter Logic
            // Save object to a file named CarData.soap in SOAP format.
            SoapFormatter soapForamt = new SoapFormatter();
            fStream = new FileStream("CarData.soap",
                 FileMode.Create, FileAccess.Write, FileShare.None);
            soapForamt.Serialize(fStream, jbc);
            fStream.Close();
            Console.WriteLine("-> Saved JamesBondCar in SOAP format."); 
            #endregion

            #region XmlSeralizer Logic
            // Save object to a file named CarData.xml in XML format.
            XmlSerializer xmlForamt = new XmlSerializer(typeof(JamesBondCar),
                new Type[] { typeof(Radio), typeof(Car) });

            fStream = new FileStream("CarData.xml",
                 FileMode.Create, FileAccess.Write, FileShare.None);
            xmlForamt.Serialize(fStream, jbc);
            fStream.Close();
            Console.WriteLine("-> Saved JamesBondCar in XML format."); 
            #endregion

            #region Persist an ArrayList of serializable objects
            // Now persiste an ArrayList of JamesBondCars.
            ArrayList myCars = new ArrayList();
            myCars.Add(new JamesBondCar(true, true));
            myCars.Add(new JamesBondCar(true, false));
            myCars.Add(new JamesBondCar(false, true));
            myCars.Add(new JamesBondCar(false, false));

            fStream = new FileStream("CarCollection.xml",
                 FileMode.Create, FileAccess.Write, FileShare.None);

            xmlForamt = new XmlSerializer(typeof(ArrayList),
                new Type[] { typeof(JamesBondCar), typeof(Car), typeof(Radio) });
            xmlForamt.Serialize(fStream, myCars);
            fStream.Close();
            Console.WriteLine("-> Saved ArrayList of JamesBondCar in XML format.\n");  
            #endregion

            Console.ReadLine();
        }
    }
}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.