码迷,mamicode.com
首页 >  
搜索关键字:serialization    ( 695个结果
ASP.NET中Json的处理
要使用.NET自带的JSON处理工具需要引用下面的命名空间:using System.Web.Script.Serialization;1.编码 myConfig mc = new myConfig(); mc.config = "测试"; mc.info = "还不错"; ...
分类:Web程序   时间:2014-12-19 17:17:12    阅读次数:159
Intellij IDEA 自动生成 serialVersionUID
1, Setting->Inspections->Serialization issues->Serializable class without ’serialVersionUID’2, 在你的class中:Alt+Enter就会提示自动创建serialVersionUID了。
分类:其他好文   时间:2014-12-16 16:59:23    阅读次数:217
Java序列化
有关Java对象的序列化和反序列化也算是Java基础的一部分,下面对Java序列化的机制和原理进行一些介绍。 Java序列化算法透析 Serialization(序列化)是一种将对象以一连串的字节描述的过程;反序列化deserializa...
分类:编程语言   时间:2014-12-12 19:30:21    阅读次数:202
错误是无法将“XXX”转换为“System.CompenentModel.Design.Serialization.InstanceDescrip”问题的解决办法
发生原因:出现这个问题的原因是两次编译生成的程序集的版本一样,导致VS的窗体设计器没有获取到最新的运行时对象,而出现的错误。解决办法:修改项目的配置信息,使其每次编译的时候都生成不同的版本。在解决方案资源管理器中,选择项目,右键选择属性,在应用程序一页中点击“程序集信息”按钮,修改程序集版本为:1....
分类:其他好文   时间:2014-12-12 18:23:43    阅读次数:131
手机大数据_SQL映射对象_动软_代码模板_Models
using System; using System.Text;using System.Collections.Generic; using System.Data;using MyAttribute;using System.Runtime.Serialization;namespace Mod...
分类:移动开发   时间:2014-12-10 19:41:43    阅读次数:235
利用反射实现序列化和反序列化
主程序using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Runtime.Serialization;using System.R...
分类:其他好文   时间:2014-12-08 17:24:54    阅读次数:247
C# 序列化(Binary、Xml、Soap)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Xml.Serialization;using System.Runtime....
分类:Windows程序   时间:2014-12-08 17:22:36    阅读次数:305
.net 泛型集合排序,查找
using System;using System.Collections.Generic;using System.Web;using System.Web.Services;using System.Web.Script.Serialization;using System.Xml;using ...
分类:编程语言   时间:2014-12-03 18:32:36    阅读次数:169
Clone Graph
Clone an undirected graph. Each node in the graph contains alabeland a list of itsneighbors.OJ's undirected graph serialization:Nodes are labeled uniq...
分类:其他好文   时间:2014-12-03 13:57:44    阅读次数:157
[Leetcode]Clone Graph
Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors. OJ's undirected graph serialization: Nodes are labeled uniquely. We use # as a separator for each...
分类:其他好文   时间:2014-12-03 12:34:14    阅读次数:113
695条   上一页 1 ... 55 56 57 58 59 ... 70 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!