最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#實現(xiàn)的序列化通用類實例

 更新時間:2015年04月25日 15:53:58   作者:gogo  
這篇文章主要介紹了C#實現(xiàn)的序列化通用類,實例分析了C#序列化與反序列化操作相關(guān)技巧,需要的朋友可以參考下

本文實例講述了C#實現(xiàn)的序列化通用類。分享給大家供大家參考。具體如下:

using System;
using System.IO;
using System.IO.Compression;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization.Formatters.Soap;
using System.Text;
using System.Xml;
using System.Xml.Serialization;
namespace PlatForm.Utilities
{
 public enum SerializedType : ushort
 {
  ByteArray = 0,
  Object = 1,
  String = 2,
  Datetime = 3,
  Bool = 4,
  //SByte  = 5, //Makes no sense.
  Byte = 6,
  Short = 7,
  UShort = 8,
  Int = 9,
  UInt = 10,
  Long = 11,
  ULong = 12,
  Float = 13,
  Double = 14,
  CompressedByteArray = 255,
  CompressedObject = 256,
  CompressedString = 257,
 }
 public class SerializeHelper
 {
  public SerializeHelper()
  { }
  #region XML序列化
  /// <summary>
  /// 文件化XML序列化
  /// </summary>
  /// <param name="obj">對象</param>
  /// <param name="filename">文件路徑</param>
  public static void Save(object obj, string filename)
  {
   FileStream fs = null;
   try
   {
    fs = new FileStream(filename, FileMode.Create, FileAccess.Write, FileShare.ReadWrite);
    XmlSerializer serializer = new XmlSerializer(obj.GetType());
    serializer.Serialize(fs, obj);
   }
   catch (Exception ex)
   {
    throw ex;
   }
   finally
   {
    if (fs != null) fs.Close();
   }
  }
  /// <summary>
  /// 文件化XML反序列化
  /// </summary>
  /// <param name="type">對象類型</param>
  /// <param name="filename">文件路徑</param>
  public static object Load(Type type, string filename)
  {
   FileStream fs = null;
   try
   {
    fs = new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    XmlSerializer serializer = new XmlSerializer(type);
    return serializer.Deserialize(fs);
   }
   catch (Exception ex)
   {
    throw ex;
   }
   finally
   {
    if (fs != null) fs.Close();
   }
  }
  /// <summary>
  /// 文本化XML序列化
  /// </summary>
  /// <param name="item">對象</param>
  public string ToXml<T>(T item)
  {
   XmlSerializer serializer = new XmlSerializer(item.GetType());
   StringBuilder sb = new StringBuilder();
   using (XmlWriter writer = XmlWriter.Create(sb))
   {
    serializer.Serialize(writer, item);
    return sb.ToString();
   }
  }
  /// <summary>
  /// 文本化XML反序列化
  /// </summary>
  /// <param name="str">字符串序列</param>
  public T FromXml<T>(string str)
  {
   XmlSerializer serializer = new XmlSerializer(typeof(T));
   using (XmlReader reader = new XmlTextReader(new StringReader(str)))
   {
    return (T)serializer.Deserialize(reader);
   }
  }
  #endregion  
  #region SoapFormatter序列化
  /// <summary>
  /// SoapFormatter序列化
  /// </summary>
  /// <param name="item">對象</param>
  public static string ToSoap<T>(T item)
  {
   SoapFormatter formatter = new SoapFormatter();
   using (MemoryStream ms = new MemoryStream())
   {
    formatter.Serialize(ms, item);
    ms.Position = 0;
    XmlDocument xmlDoc = new XmlDocument();
    xmlDoc.Load(ms);
    return xmlDoc.InnerXml;
   }
  }
  /// <summary>
  /// SoapFormatter反序列化
  /// </summary>
  /// <param name="str">字符串序列</param>
  public static T FromSoap<T>(string str)
  {
   XmlDocument xmlDoc = new XmlDocument();
   xmlDoc.LoadXml(str);
   SoapFormatter formatter = new SoapFormatter();
   using (MemoryStream ms = new MemoryStream())
   {
    xmlDoc.Save(ms);
    ms.Position = 0;
    return (T)formatter.Deserialize(ms);
   }
  }
  #endregion
  #region BinaryFormatter序列化
  /// <summary>
  /// BinaryFormatter序列化
  /// </summary>
  /// <param name="item">對象</param>
  public static string ToBinary<T>(T item)
  {
   BinaryFormatter formatter = new BinaryFormatter();
   using (MemoryStream ms = new MemoryStream())
   {
    formatter.Serialize(ms, item);
    ms.Position = 0;
    byte[] bytes = ms.ToArray();
    StringBuilder sb = new StringBuilder();
    foreach (byte bt in bytes)
    {
     sb.Append(string.Format("{0:X2}", bt));
    }
    return sb.ToString();
   }
  }
  /// <summary>
  /// BinaryFormatter反序列化
  /// </summary>
  /// <param name="str">字符串序列</param>
  public static T FromBinary<T>(string str)
  {
   int intLen = str.Length / 2;
   byte[] bytes = new byte[intLen];
   for (int i = 0; i < intLen; i++)
   {
    int ibyte = Convert.ToInt32(str.Substring(i * 2, 2), 16);
    bytes[i] = (byte)ibyte;
   }
   BinaryFormatter formatter = new BinaryFormatter();
   using (MemoryStream ms = new MemoryStream(bytes))
   {
    return (T)formatter.Deserialize(ms);
   }
  }
  #endregion
  /// <summary>
  /// 將對象序列化為二進制字節(jié)
  /// </summary>
  /// <param name="obj">待序列化的對象</param>
  /// <returns></returns>
  public static byte[] SerializeToBinary(object obj)
  {
   byte[] bytes = new byte[2500];
   using (MemoryStream memoryStream = new MemoryStream())
   {
    BinaryFormatter bformatter = new BinaryFormatter();
    bformatter.Serialize(memoryStream, obj);
    memoryStream.Seek(0, 0);
    if (memoryStream.Length > bytes.Length)
    {
     bytes = new byte[memoryStream.Length];
    }
    bytes = memoryStream.ToArray();
   }
   return bytes;
  }
  /// <summary>
  /// 從二進制字節(jié)中反序列化為對象
  /// </summary>
  /// <param name="type">對象的類型</param>
  /// <param name="bytes">字節(jié)數(shù)組</param>
  /// <returns>反序列化后得到的對象</returns>
  public static object DeserializeFromBinary(Type type, byte[] bytes)
  {
   object result = new object();
   using (MemoryStream memoryStream = new MemoryStream(bytes))
   {
    BinaryFormatter serializer = new BinaryFormatter();
    result = serializer.Deserialize(memoryStream);
   }
   return result;
  }
  /// <summary>
  /// 將文件對象序列化到文件中
  /// </summary>
  /// <param name="obj">待序列化的對象</param>
  /// <param name="path">文件路徑</param>
  /// <param name="fileMode">文件打開模式</param>
  public static void SerializeToBinary(object obj, string path, FileMode fileMode)
  {
   using (FileStream fs = new FileStream(path, fileMode))
   {
    // Construct a BinaryFormatter and use it to serialize the data to the stream.
    BinaryFormatter formatter = new BinaryFormatter();
    formatter.Serialize(fs, obj);
   }
  }
  /// <summary>
  /// 將文件對象序列化到文件中
  /// </summary>
  /// <param name="obj">待序列化的對象</param>
  /// <param name="path">文件路徑</param>
  public static void SerializeToBinary(object obj, string path)
  {
   SerializeToBinary(obj, path, FileMode.Create);
  }
  /// <summary>
  /// 從二進制文件中反序列化為對象
  /// </summary>
  /// <param name="type">對象的類型</param>
  /// <param name="path">二進制文件路徑</param>
  /// <returns>反序列化后得到的對象</returns>
  public static object DeserializeFromBinary(Type type, string path)
  {
   object result = new object();
   using (FileStream fileStream = new FileStream(path, FileMode.Open))
   {
    BinaryFormatter serializer = new BinaryFormatter();
    result = serializer.Deserialize(fileStream);
   }
   return result;
  }
  /// <summary>
  /// 獲取對象的轉(zhuǎn)換為二進制的字節(jié)大小
  /// </summary>
  /// <param name="obj"></param>
  /// <returns></returns>
  public static long GetByteSize(object obj)
  {
   long result;
   BinaryFormatter bFormatter = new BinaryFormatter();
   using (MemoryStream stream = new MemoryStream())
   {
    bFormatter.Serialize(stream, obj);
    result = stream.Length;
   }
   return result;
  }
  /// <summary>
  /// 克隆一個對象
  /// </summary>
  /// <param name="obj">待克隆的對象</param>
  /// <returns>克隆的一個新的對象</returns>
  public static object Clone(object obj)
  {
   object cloned = null;
   BinaryFormatter bFormatter = new BinaryFormatter();
   using (MemoryStream memoryStream = new MemoryStream())
   {
    try
    {
     bFormatter.Serialize(memoryStream, obj);
     memoryStream.Seek(0, SeekOrigin.Begin);
     cloned = bFormatter.Deserialize(memoryStream);
    }
    catch //(Exception e)
    {
     ;
    }
   }
   return cloned;
  }
  /// <summary>
  /// 從文件中讀取文本內(nèi)容
  /// </summary>
  /// <param name="path">文件路徑</param>
  /// <returns>文件的內(nèi)容</returns>
  public static string ReadFile(string path)
  {
   string content = string.Empty;
   using (StreamReader reader = new StreamReader(path))
   {
    content = reader.ReadToEnd();
   }
   return content;
  }
  public static byte[] Serialize(object value, out SerializedType type, uint compressionThreshold)
  {
   byte[] bytes;
   if (value is byte[])
   {
    bytes = (byte[])value;
    type = SerializedType.ByteArray;
    if (bytes.Length > compressionThreshold)
    {
     bytes = compress(bytes);
     type = SerializedType.CompressedByteArray;
    }
   }
   else if (value is string)
   {
    bytes = Encoding.UTF8.GetBytes((string)value);
    type = SerializedType.String;
    if (bytes.Length > compressionThreshold)
    {
     bytes = compress(bytes);
     type = SerializedType.CompressedString;
    }
   }
   else if (value is DateTime)
   {
    bytes = BitConverter.GetBytes(((DateTime)value).Ticks);
    type = SerializedType.Datetime;
   }
   else if (value is bool)
   {
    bytes = new byte[] { (byte)((bool)value ? 1 : 0) };
    type = SerializedType.Bool;
   }
   else if (value is byte)
   {
    bytes = new byte[] { (byte)value };
    type = SerializedType.Byte;
   }
   else if (value is short)
   {
    bytes = BitConverter.GetBytes((short)value);
    type = SerializedType.Short;
   }
   else if (value is ushort)
   {
    bytes = BitConverter.GetBytes((ushort)value);
    type = SerializedType.UShort;
   }
   else if (value is int)
   {
    bytes = BitConverter.GetBytes((int)value);
    type = SerializedType.Int;
   }
   else if (value is uint)
   {
    bytes = BitConverter.GetBytes((uint)value);
    type = SerializedType.UInt;
   }
   else if (value is long)
   {
    bytes = BitConverter.GetBytes((long)value);
    type = SerializedType.Long;
   }
   else if (value is ulong)
   {
    bytes = BitConverter.GetBytes((ulong)value);
    type = SerializedType.ULong;
   }
   else if (value is float)
   {
    bytes = BitConverter.GetBytes((float)value);
    type = SerializedType.Float;
   }
   else if (value is double)
   {
    bytes = BitConverter.GetBytes((double)value);
    type = SerializedType.Double;
   }
   else
   {
    //Object
    using (MemoryStream ms = new MemoryStream())
    {
     new BinaryFormatter().Serialize(ms, value);
     bytes = ms.GetBuffer();
     type = SerializedType.Object;
     if (bytes.Length > compressionThreshold)
     {
      bytes = compress(bytes);
      type = SerializedType.CompressedObject;
     }
    }
   }
   return bytes;
  }
  private static byte[] compress(byte[] bytes)
  {
   using (MemoryStream ms = new MemoryStream())
   {
    using (DeflateStream gzs = new DeflateStream(ms, CompressionMode.Compress, false))
    {
     gzs.Write(bytes, 0, bytes.Length);
    }
    ms.Close();
    return ms.GetBuffer();
   }
  }
  private static byte[] decompress(byte[] bytes)
  {
   using (MemoryStream ms = new MemoryStream(bytes, false))
   {
    using (DeflateStream gzs = new DeflateStream(ms, CompressionMode.Decompress, false))
    {
     using (MemoryStream dest = new MemoryStream())
     {
      byte[] tmp = new byte[bytes.Length];
      int read;
      while ((read = gzs.Read(tmp, 0, tmp.Length)) != 0)
      {
       dest.Write(tmp, 0, read);
      }
      dest.Close();
      return dest.GetBuffer();
     }
    }
   }
  }
  public static object DeSerialize(byte[] bytes, SerializedType type)
  {
   switch (type)
   {
    case SerializedType.String:
     return Encoding.UTF8.GetString(bytes);
    case SerializedType.Datetime:
     return new DateTime(BitConverter.ToInt64(bytes, 0));
    case SerializedType.Bool:
     return bytes[0] == 1;
    case SerializedType.Byte:
     return bytes[0];
    case SerializedType.Short:
     return BitConverter.ToInt16(bytes, 0);
    case SerializedType.UShort:
     return BitConverter.ToUInt16(bytes, 0);
    case SerializedType.Int:
     return BitConverter.ToInt32(bytes, 0);
    case SerializedType.UInt:
     return BitConverter.ToUInt32(bytes, 0);
    case SerializedType.Long:
     return BitConverter.ToInt64(bytes, 0);
    case SerializedType.ULong:
     return BitConverter.ToUInt64(bytes, 0);
    case SerializedType.Float:
     return BitConverter.ToSingle(bytes, 0);
    case SerializedType.Double:
     return BitConverter.ToDouble(bytes, 0);
    case SerializedType.Object:
     using (MemoryStream ms = new MemoryStream(bytes))
     {
      return new BinaryFormatter().Deserialize(ms);
     }
    case SerializedType.CompressedByteArray:
     return DeSerialize(decompress(bytes), SerializedType.ByteArray);
    case SerializedType.CompressedString:
     return DeSerialize(decompress(bytes), SerializedType.String);
    case SerializedType.CompressedObject:
     return DeSerialize(decompress(bytes), SerializedType.Object);
    case SerializedType.ByteArray:
    default:
     return bytes;
   }
  }
 }
}

希望本文所述對大家的C#程序設(shè)計有所幫助。

相關(guān)文章

  • C#窗體編程(windows forms)禁止窗口最大化的方法

    C#窗體編程(windows forms)禁止窗口最大化的方法

    這篇文章主要介紹了C#窗體編程(windows forms)禁止窗口最大化的方法,以及避免彈出系統(tǒng)菜單和禁止窗口拖拽的方法,需要的朋友可以參考下
    2014-08-08
  • WPF ProgressBar實現(xiàn)實時進度效果

    WPF ProgressBar實現(xiàn)實時進度效果

    這篇文章主要介紹了WPF ProgressBar實現(xiàn)實時進度效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • C#集合之自定義集合類

    C#集合之自定義集合類

    這篇文章介紹了C#集合之自定義集合類,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-05-05
  • C#使用遠(yuǎn)程服務(wù)調(diào)用框架Apache Thrift

    C#使用遠(yuǎn)程服務(wù)調(diào)用框架Apache Thrift

    這篇文章介紹了C#使用遠(yuǎn)程服務(wù)調(diào)用框架Apache Thrift的方法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-06-06
  • C#實現(xiàn)時間戳的簡單方法

    C#實現(xiàn)時間戳的簡單方法

    這篇文章主要介紹了C#實現(xiàn)時間戳的簡單方法,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下
    2019-04-04
  • C#動態(tài)執(zhí)行批處理命令的方法

    C#動態(tài)執(zhí)行批處理命令的方法

    這篇文章主要介紹了C#動態(tài)執(zhí)行批處理命令的方法,可實現(xiàn)動態(tài)執(zhí)行一系列控制臺命令,并允許實時顯示出來執(zhí)行結(jié)果,需要的朋友可以參考下
    2014-11-11
  • Unity2021發(fā)布WebGL與網(wǎng)頁交互問題的解決

    Unity2021發(fā)布WebGL與網(wǎng)頁交互問題的解決

    本文主要介紹了Unity2021發(fā)布WebGL與網(wǎng)頁交互問題的解決,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-05-05
  • C#實體類轉(zhuǎn)換的兩種方式小結(jié)

    C#實體類轉(zhuǎn)換的兩種方式小結(jié)

    這篇文章主要介紹了C#實體類轉(zhuǎn)換的兩種方式小結(jié),具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-01-01
  • C#彩色圖片灰度化算法實例

    C#彩色圖片灰度化算法實例

    這篇文章主要介紹了C#彩色圖片灰度化算法,以實例形式對灰度化算法進行了較為詳細(xì)的介紹,非常具有實用價值,需要的朋友可以參考下
    2014-10-10
  • C#實現(xiàn)HTTP下載文件的方法

    C#實現(xiàn)HTTP下載文件的方法

    這篇文章主要介紹了C#實現(xiàn)HTTP下載文件的方法,包括了HTTP通信的創(chuàng)建、本地文件的寫入等,非常具有實用價值,需要的朋友可以參考下
    2014-11-11

最新評論

纳雍县| 开封县| 镇坪县| 石屏县| 大渡口区| 白银市| 阜阳市| 清新县| 革吉县| 南华县| 通山县| 绵竹市| 革吉县| 塔河县| 六盘水市| 澎湖县| 赣榆县| 大足县| 芜湖县| 瑞安市| 神木县| 南涧| 永济市| 雷州市| 襄汾县| 鸡东县| 广东省| 高雄县| 通河县| 伊春市| 延边| 清涧县| 锦屏县| 酒泉市| 六安市| 济源市| 玉环县| 利辛县| 河间市| 石阡县| 乌海市|