码迷,mamicode.com
首页 >  
搜索关键字:serialization    ( 695个结果
ASP.NET Web Service 标准SOAP开发案例代码(自定义验证安全头SOAPHeader)
using System.Xml;using System.Xml.Serialization;using System.Web.Services.Protocols;using System.Configuration;using Service.Common.Constant;namespace
分类:Web程序   时间:2016-02-24 19:22:39    阅读次数:220
Unity Interface Serialization-Expose Interface field In Inspector
Unity has some quirks about their inspector, so as a preface they are listed here: If you add a [Serializable] attribute to a class, Unity's Inspector
分类:编程语言   时间:2016-02-24 14:11:27    阅读次数:741
C# xml可序列化多值枚举
代码: using System; using System.Collections.Generic; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; namespace Hont { [XmlRo
分类:Windows程序   时间:2016-02-17 17:07:56    阅读次数:534
[LeetCode][JavaScript]Verify Preorder Serialization of a Binary Tree
Verify Preorder Serialization of a Binary Tree One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we
分类:编程语言   时间:2016-02-05 18:44:24    阅读次数:197
Java序列化与反序列化学习(三):序列化机制与原理
Java序列化算法透析 Serialization(序列化)是一种将对象以一连串的字节描述的过程;反序列化deserialization是一种将这些字节重建成一个对象的 过程。Java序列化API提供一种处理对象序列化的标准机制。在这里你能学到如何序列化一个对象,什么时候需要序列化以及Java序列化
分类:编程语言   时间:2016-02-05 12:08:46    阅读次数:225
ASP.NET 使用 System.Web.Script.Serialization 解析 JSON (转)
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999
分类:Web程序   时间:2016-02-02 16:25:56    阅读次数:188
[LeetCode] Verify Preorder Serialization of a Binary Tree 验证二叉树的先序序列化
One way to serialize a binary tree is to use pre-oder traversal. When we encounter a non-null node, we record the node's value. If it is a null node,
分类:其他好文   时间:2016-02-01 13:59:13    阅读次数:115
Leetcode: Verify Preorder Serialization of a Binary Tree
One way to serialize a binary tree is to use pre-oder traversal. When we encounter a non-null node, we record the node's value. If it is a null node,
分类:其他好文   时间:2016-02-01 09:39:10    阅读次数:174
Hadoop序列化与Writable源码分析
序列化的概念 1.序列化(Serialization)是指把结构化对象转化为字节流。 2.反序列化(Deserialization)是序列化的逆过程,即把字节流转回结构化对象Hadoop序列化的特点 1.序列化格式特点 ——紧凑:高效使用 存储空间 ——快速:读写数据的额外开销小 ——可扩展:可透明
分类:其他好文   时间:2016-01-31 21:31:56    阅读次数:359
Idea_Intellij Idea 12 生成serialVersionUID的方法
默认情况下Intellij IDEA是关闭了继承了java.io.Serializable的类生成serialVersionUID的警告。如果需要ide提示生成serialVersionUID,那么需要做以下设置: 1、setting->Inspections->Serialization issu
分类:其他好文   时间:2016-01-29 20:57:07    阅读次数:207
695条   上一页 1 ... 31 32 33 34 35 ... 70 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!