• C#Object与XML文件或二进制文件之间的转化


    Object To Xml 文件

     public static bool Serializer<T>(object obj, string path)
          {
              FileStream xmlfile = new FileStream(path, FileMode.OpenOrCreate);
              
              //创建序列化对象 
              XmlSerializer xml = new XmlSerializer(typeof(T));
              try
              {    //序列化对象
                  xml.Serialize(xmlfile, obj);
                  xmlfile.Close();
              }
              catch (InvalidOperationException)
              {
                  throw;
              }
              
              return true;
              
          }

    Xml To Object

     public static T Deserializer<T>(string path)
          {
              try
              {
                  FileStream xmlfile = new FileStream(path, FileMode.Open);
    
                  XmlSerializer xml = new XmlSerializer(typeof(T));
                  //序列化对象
                  //xmlfile.Close();
                  T t = (T)xml.Deserialize(xmlfile);
                  xmlfile.Close();
                  return t;
              }
              catch (InvalidOperationException)
              {
                  throw;
              }
              catch (FileNotFoundException)
              { throw; }
              finally
              {
                  
              }
          }
    

      

    Object To Bin

    public static bool BinarySerializer(object obj, string path)
          {
              FileStream Stream = new FileStream(path, FileMode.OpenOrCreate);
              //创建序列化对象 
              BinaryFormatter bin = new BinaryFormatter();
              try
              {    //序列化对象
                  bin.Serialize(Stream, obj);
                  Stream.Close();
              }
              catch (InvalidOperationException)
              {
                  throw;
              }
              return true;
          }
    

      

    Bin To Object

    public static T BinaryDeserializer<T>(string path)
          {
              try
              {
                  FileStream binfile = new FileStream(path, FileMode.Open);
    
                  BinaryFormatter bin = new BinaryFormatter();
                  //序列化对象
                  //xmlfile.Close();
                  T t = (T)bin.Deserialize(binfile);
                  binfile.Close();
                  return t;
              }
              catch (InvalidOperationException)
              {
                  throw;
              }
              catch (FileNotFoundException)
              { throw; }
              finally
              {
    
              }
          }
    

      

  • 相关阅读:
    机器学习概要
    Latex公式压缩
    MATLAB多项式运算
    利用MathType为公式编号并引用
    MATLAB符号对象与符号运算
    MATLAB矩阵运算
    MATLAB绘制函数图
    MATLAB程序控制语句
    MATLAB关系运算符和逻辑运算符
    Raspberry pi之wifi设置-3
  • 原文地址:https://www.cnblogs.com/jesszhu/p/3276556.html
Copyright © 2020-2023  润新知