代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
将一个model序列化为xml.然后让这个xml成为一个string
作者:
Dezai.CN
/ 发布于
2012/10/9
/
790
将一个model序列化为xml.然后让这个xml成为一个string
<div>public static class SerializeHelper { #region BinaryFormatter #region SerializeObject public static byte[] SerializeObject(object obj) //obj 可以是数组 { IFormatter formatter = new BinaryFormatter(); MemoryStream memoryStream = new MemoryStream();//此种情况下,mem_stream的缓冲区大小是可变的</div> <div> formatter.Serialize(memoryStream, obj);</div> <div> byte[] buff = memoryStream.ToArray(); memoryStream.Close();</div> <div> return buff; } <div> public static void SerializeObject(object obj, ref byte[] buff, int offset) //obj 可以是数组 { byte[] rude_buff = SerializeHelper.SerializeObject(obj); for (int i = 0; i < rude_buff.Length; i++) { buff[offset + i] = rude_buff[i]; } } #endregion</div> <div> #region DeserializeBytes public static object DeserializeBytes(byte[] buff, int index, int count) { IFormatter formatter = new BinaryFormatter();</div> <div> MemoryStream stream = new MemoryStream(buff, index, count); object obj = formatter.Deserialize(stream); stream.Close();</div> <div> return obj; } #endregion #endregion</div> <div> #region SoapFormatter #region SerializeObjectToString /// <summary> /// SerializeObjectToString 将对象序列化为SOAP XML 格式。 /// 如果要将对象转化为简洁的xml格式,请使用ESBasic.Persistence.SimpleXmlConverter类。 /// </summary> public static string SerializeObjectToString(object obj) { IFormatter formatter = new SoapFormatter(); MemoryStream stream = new MemoryStream(); formatter.Serialize(stream, obj); stream.Position = 0; StreamReader reader = new StreamReader(stream); string res = reader.ReadToEnd(); stream.Close();</div> <div> return res; } #endregion</div> <div> #region DeserializeString public static object DeserializeString(string str,System.Text.Encoding ecnoding) { byte[] buff = ecnoding.GetBytes(str); IFormatter formatter = new SoapFormatter(); MemoryStream stream = new MemoryStream(buff, 0, buff.Length); object obj = formatter.Deserialize(stream); stream.Close();</div> <div> return obj; } #endregion #endregion</div> <div> #region XmlSerializer #region XmlObject public static string XmlObject(object obj) { XmlSerializer xmlSerializer = new XmlSerializer(obj.GetType()); MemoryStream stream = new MemoryStream(); xmlSerializer.Serialize(stream, obj); stream.Position = 0; StreamReader reader = new StreamReader(stream); string res = reader.ReadToEnd(); stream.Close();</div> <div> return res; } #endregion</div> <div> #region ObjectXml public static T ObjectXml<T>(string str, System.Text.Encoding ecnoding) { return (T)SerializeHelper.ObjectXml(str, typeof(T), ecnoding); } <div> public static object ObjectXml(string str, Type targetType, System.Text.Encoding ecnoding) { byte[] buff = ecnoding.GetBytes(str); XmlSerializer xmlSerializer = new XmlSerializer(targetType); MemoryStream stream = new MemoryStream(buff, 0, buff.Length); object obj = xmlSerializer.Deserialize(stream); stream.Close();</div> <div> return obj; } #endregion #endregion</div> <div> #region SaveToFile /// <summary> /// SaveToFile 将对象的二进制序列化后保存到文件。 /// </summary> public static void SaveToFile(object obj, string filePath) { FileStream stream = new FileStream(filePath, FileMode.CreateNew); IFormatter formatter = new BinaryFormatter(); formatter.Serialize(stream, obj);</div> <div> stream.Flush(); stream.Close(); } #endregion</div> <div> #region ReadFromFile /// <summary> /// ReadFromFile 从文件读取二进制反序列化为对象。 /// </summary> public static object ReadFromFile(string filePath) { byte[] buff = FileHelper.ReadFileReturnBytes(filePath); return SerializeHelper.DeserializeBytes(buff, 0, buff.Length); } #endregion } <div>/// <summary> /// 序列化类 /// </summary> public static class Serializer {</div> <div> /// <summary> /// Static Constructor is used to set the CanBinarySerialize value only once for the given security policy /// </summary> static Serializer() { SecurityPermission sp = new SecurityPermission( SecurityPermissionFlag.SerializationFormatter ); try { sp.Demand(); CanBinarySerialize = true; } catch ( SecurityException ) { CanBinarySerialize = false; } } <div> /// <summary> /// Readonly value indicating if Binary Serialization (using BinaryFormatter) is allowed /// </summary> public static readonly bool CanBinarySerialize;</div> <div> /// <summary> /// Converts a .NET object to a byte array. Before the conversion happens, a check with /// Serializer.CanBinarySerialize will be made /// </summary> /// <param name="objectToConvert">Object to convert</param> /// <returns>A byte arry representing the object paramter. Null will be return if CanBinarySerialize is false</returns> public static byte[] ConvertToBytes( object objectToConvert ) { byte[] byteArray = null;</div> <div> if ( CanBinarySerialize ) { BinaryFormatter binaryFormatter = new BinaryFormatter(); using ( MemoryStream ms = new MemoryStream() ) {</div> <div> binaryFormatter.Serialize( ms, objectToConvert );</div> <div> // Set the position of the MemoryStream back to 0 // ms.Position = 0;</div> <div> // Read in the byte array // byteArray = new Byte[ ms.Length ]; ms.Read( byteArray, 0, byteArray.Length ); ms.Close(); } } return byteArray; } <div> /// <summary> /// Saves an object to disk as a binary file. /// </summary> /// <param name="objectToSave">Object to Save</param> /// <param name="path">Location of the file</param> /// <returns>true if the save was succesful.</returns> public static bool SaveAsBinary( object objectToSave, string path ) { if ( objectToSave != null && CanBinarySerialize ) { byte[] ba = ConvertToBytes( objectToSave ); if ( ba != null ) { using ( FileStream fs = new FileStream( path, FileMode.OpenOrCreate, FileAccess.Write ) ) { using ( BinaryWriter bw = new BinaryWriter( fs ) ) { bw.Write( ba ); return true; } } } } return false; } <div> /// <summary> /// Converts a .NET object to a string of XML. The object must be marked as Serializable or an exception /// will be thrown. /// </summary> /// <param name="objectToConvert">Object to convert</param> /// <returns>A xml string represting the object parameter. The return value will be null of the object is null</returns> public static string ConvertToString( object objectToConvert ) { string xml = null;</div> <div> if ( objectToConvert != null ) { //we need the type to serialize Type t = objectToConvert.GetType();</div> <div> XmlSerializer ser = new XmlSerializer( t ); //will hold the xml using ( StringWriter writer = new StringWriter( CultureInfo.InvariantCulture ) ) { ser.Serialize( writer, objectToConvert ); xml = writer.ToString(); writer.Close(); } } <div> return xml; } <div> public static void SaveAsXML( object objectToConvert, string path ) { if ( objectToConvert != null ) { //we need the type to serialize Type t = objectToConvert.GetType();</div> <div> XmlSerializer ser = new XmlSerializer( t ); //will hold the xml using ( StreamWriter writer = new StreamWriter( path ) ) { ser.Serialize( writer, objectToConvert ); writer.Close(); } } <div> } <div> /// <summary> /// Converts a byte array to a .NET object. You will need to cast this object back to its expected type. /// If the array is null or empty, it will return null. /// </summary> /// <param name="byteArray">An array of bytes represeting a .NET object</param> /// <returns>The byte array converted to an object or null if the value of byteArray is null or empty</returns> public static object ConvertToObject( byte[] byteArray ) { object convertedObject = null; if ( CanBinarySerialize && byteArray != null && byteArray.Length > 0 ) { BinaryFormatter binaryFormatter = new BinaryFormatter(); using ( MemoryStream ms = new MemoryStream() ) { ms.Write( byteArray, 0, byteArray.Length );</div> <div> // Set the memory stream position to the beginning of the stream // ms.Position = 0;</div> <div> if ( byteArray.Length > 4 ) convertedObject = binaryFormatter.Deserialize( ms );</div> <div> ms.Close(); } } return convertedObject; } <div> /// <summary> /// Converts a string of xml to the supplied object type. /// </summary> /// <param name="xml">Xml representing a .NET object</param> /// <param name="objectType">The type of object which the xml represents</param> /// <returns>A instance of object or null if the value of xml is null or empty</returns> public static object ConvertToObject( XmlNode node, Type objectType ) { object convertedObject = null;</div> <div> if ( node != null ) { using ( StringReader reader = new StringReader( node.OuterXml ) ) {</div> <div> XmlSerializer ser = new XmlSerializer( objectType );</div> <div> convertedObject = ser.Deserialize( reader );</div> <div> reader.Close(); } } return convertedObject; } <div> public static object ConvertFileToObject( string path, Type objectType ) { object convertedObject = null;</div> <div> if ( path != null && path.Length > 0 ) { using ( FileStream fs = new FileStream( path, FileMode.Open, FileAccess.Read ) ) { XmlSerializer ser = new XmlSerializer( objectType ); convertedObject = ser.Deserialize( fs ); fs.Close(); } } return convertedObject; } <div> /// <summary> /// Converts a string of xml to the supplied object type. /// </summary> /// <param name="xml">Xml representing a .NET object</param> /// <param name="objectType">The type of object which the xml represents</param> /// <returns>A instance of object or null if the value of xml is null or empty</returns> public static object ConvertToObject( string xml, Type objectType ) { object convertedObject = null;</div> <div> if ( !string.IsNullOrEmpty( xml ) ) { using ( StringReader reader = new StringReader( xml ) ) { XmlSerializer ser = new XmlSerializer( objectType ); convertedObject = ser.Deserialize( reader ); reader.Close(); } } return convertedObject; } <div> public static object LoadBinaryFile( string path ) { if ( !File.Exists( path ) ) return null;</div> <div> using ( FileStream fs = new FileStream( path, FileMode.Open, FileAccess.Read ) ) { BinaryReader br = new BinaryReader( fs ); byte[] ba = new byte[ fs.Length ]; br.Read( ba, 0, ( int )fs.Length ); return ConvertToObject( ba ); } } <div> /// <summary> /// Creates a NameValueCollection from two string. The first contains the key pattern and the second contains the values /// spaced according to the kys /// </summary> /// <param name="keys">Keys for the namevalue collection</param> /// <param name="values">Values for the namevalue collection</param> /// <returns>A NVC populated based on the keys and vaules</returns> /// <example> /// string keys = "key1:S:0:3:key2:S:3:2:"; /// string values = "12345"; /// This would result in a NameValueCollection with two keys (Key1 and Key2) with the values 123 and 45 /// </example> public static NameValueCollection ConvertToNameValueCollection( string keys, string values ) { NameValueCollection nvc = new NameValueCollection();</div> <div> if ( keys != null && values != null && keys.Length > 0 && values.Length > 0 ) { char[] splitter = new char[ 1 ] { ':' }; string[] keyNames = keys.Split( splitter );</div> <div> for ( int i = 0; i < ( keyNames.Length / 4 ); i++ ) { int start = int.Parse( keyNames[ ( i * 4 ) + 2 ], CultureInfo.InvariantCulture ); int len = int.Parse( keyNames[ ( i * 4 ) + 3 ], CultureInfo.InvariantCulture ); string key = keyNames[ i * 4 ];</div> <div> //Future version will support more complex types if ( ( ( keyNames[ ( i * 4 ) + 1 ] == "S" ) && ( start >= 0 ) ) && ( len > 0 ) && ( values.Length >= ( start + len ) ) ) { nvc[ key ] = values.Substring( start, len ); } } } <div> return nvc; } <div> /// <summary> /// Creates a the keys and values strings for the simple serialization based on a NameValueCollection /// </summary> /// <param name="nvc">NameValueCollection to convert</param> /// <param name="keys">the ref string will contain the keys based on the key format</param> /// <param name="values">the ref string will contain all the values of the namevaluecollection</param> public static void ConvertFromNameValueCollection( NameValueCollection nvc, ref string keys, ref string values ) { if ( nvc == null || nvc.Count == 0 ) return;</div> <div> StringBuilder sbKey = new StringBuilder(); StringBuilder sbValue = new StringBuilder();</div> <div> int index = 0; foreach ( string key in nvc.AllKeys ) { if ( key.IndexOf( ':' ) != -1 ) throw new ArgumentException( "ExtendedAttributes Key can not contain the character \":\"" );</div> <div> string v = nvc[ key ]; if ( !string.IsNullOrEmpty( v ) ) { sbKey.AppendFormat( "{0}:S:{1}:{2}:", key, index, v.Length ); sbValue.Append( v ); index += v.Length; } } keys = sbKey.ToString(); values = sbValue.ToString(); } }
试试其它关键字
model序列化
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
Dezai.CN
贡献的其它代码
(
4037
)
.
多线程Socket服务器模块
.
生成随机密码
.
清除浮动样式
.
弹出窗口居中
.
抓取url的函数
.
使用base HTTP验证
.
div模拟iframe嵌入效果
.
通过header转向的方法
.
Session操作类
.
执行sqlite输入插入操作后获得自动编号的ID
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3