-
Notifications
You must be signed in to change notification settings - Fork 187
Hprose 序列化
Hprose 提供了一套自己的序列化格式用来实现高效的跨语言跨平台的数据存储和交换。该序列化格式,在 hprose for Java 中被实现为以下几个对象:
HproseTags
HproseMode
HproseClassManager
HproseWriter
HproseReader
HproseFormatter
HproseTags
对象中包含了所有的 Hprose 序列化和 RPC 标记定义。Hprose 的使用者通常不需要关心该对象,因此这里不对该对象做详细介绍。
HproseMode
是一个枚举类型,表示序列化模式。其中包含了三个值:
FieldMode
PropertyMode
MemberMode
FieldMode
模式下只序列化 Java 类中的字段,包括私有字段,但是静态字段和 transient
字段不会序列化。
PropertyMode
模式下只序列化 Java 类中的 public
可读写属性。
MemberMode
模式下序列化 Java 类中的 public
可读写属性和字段,但不包括静态字段和 transient
字段。
HproseClassManager
用于管理自定义类型与其它语言之间的映射关系。
HproseWriter
用于进行细粒度的 Hprose 序列化操作。
HproseReader
用于进行细粒度的 Hprose 反序列化操作。
HproseFormatter
用于进行粗粒度的 Hprose 序列化和反序列化操作。
这些类都包含在 hprose.io
包中。下面我们将对这几个类进行详细的介绍。
HproseClassManager.register(class, alias);
当 Hprose 序列化对象时,需要知道对象的类名,但有时候,我们在不同的语言中定义的类名可能不同,但结构相同或相近,我们希望这些定义不同的类的对象可以相互传递。那么就需要使用该方法来进行注册,注册成统一的别名之后,就可以相互传递了。
其中 class
表示要注册的类,alias
表示注册的别名。例如:
package hprose.example.io;
public class User {
public String name;
public int age;
}
...
HproseClassManager.register(User.class, "User");
在很多语言中,类名是有名称空间(NameSpace)的,例如上面的代码中,就是这样一个类:hprose.example.io.User
,但也有些语言没有名称空间的概念,或者名称空间和类之间的分隔符不是用 .
,而是用 :
或者 \
等符号。比如假设我们在 PHP 中定义了一个 My\Model\User
类,但是并没有执行这个注册,我们又希望能够跟它交互,我们可以这样注册:
HproseClassManager.register(User.class, "My_Model_User");
注意上面的别名中,不是使用 .
做分隔符的,而是使用 _
,Hprose 会自动将 _
转换为对应语言的分隔符,对于不支持名称空间的语言,则直接对应 My_Model_User
这个名字,这样既可以支持没有名称空间的语言,也可以支持具有名称空间的语言。
HproseClassManager.getClassAlias(class);
通过类来查找别名,
HproseClassManager.getClass(alias);
通过别名来查找注册的类。
HproseClassManager.containsClass(alias);
返回别名是否已注册,已注册返回 true
,否则返回 false
。
下面来举一个完整的例子,来看一下上面几个方法是如何工作的:
package hprose.example.io;
import hprose.io.HproseClassManager;
public class ClassManagerExam {
public static void main(String[] args) {
HproseClassManager.register(User.class, "my_package_User");
System.out.println(HproseClassManager.getClassAlias(User.class));
System.out.println(HproseClassManager.getClass("my_package_User"));
System.out.println(HproseClassManager.getClass("User"));
System.out.println(HproseClassManager.containsClass("my_package_User"));
System.out.println(HproseClassManager.containsClass("User"));
}
}
输出结果为:
my_package_User
class hprose.example.io.User
null
true
false
public HproseWriter(OutputStream stream);
public HproseWriter(OutputStream stream, boolean simple);
public HproseWriter(OutputStream stream, HproseMode mode);
public HproseWriter(OutputStream stream, HproseMode mode, boolean simple);
stream
参数是一个 OutputStream
的实例对象,序列化数据将会写入到该对象中。
mode
参数表示序列化对象的方式,三种方式在上面介绍 HproseMode
时大致上已经介绍过了。默认是 MemberMode
。
simple
参数如果为 true
,则不使用引用方式序列化,通常在序列化的数据中不包含引用类型数据时,设置为 true
可以加快速度。当包含引用类型数据时,需要设置为 false
(即默认值),尤其是当引用数据中包括递归数据时,如果不使用引用方式,会陷入死循环导致堆栈溢出的错误。
只读字段,返回当前用于写入序列化数据的 OutputStream
实例对象。该字段的值即上面构造器中的第一个参数。
public final void serialize(Object obj) throws IOException;
该方法是 HproseWriter
的核心方法,功能是将任意对象序列化到 HproseWriter
所写入的流中。这里来举几个例子:
package hprose.example.io;
import hprose.io.ByteBufferStream;
import hprose.io.HproseClassManager;
import hprose.io.HproseWriter;
import hprose.util.StrUtil;
import java.io.IOException;
public class WriterExam {
public static void main(String[] args) throws IOException {
HproseClassManager.register(User.class, "my_package_User");
ByteBufferStream stream = new ByteBufferStream();
HproseWriter writer = new HproseWriter(stream.getOutputStream());
writer.serialize(0);
writer.serialize(1);
writer.serialize(2);
writer.serialize(3);
writer.serialize(123);
writer.serialize(3.14);
writer.serialize("hello");
writer.serialize("你好🇨🇳");
writer.serialize(new char[] {'x', 'y', 'z'});
writer.serialize(new Object[] {"x", "y", "z"});
System.out.println(StrUtil.toString(stream));
stream.rewind();
User user = new User();
user.name = "Tom";
user.age = 18;
writer.serialize(user);
System.out.println(StrUtil.toString(stream));
}
}
输出结果如下:
0123i123;d3.14;s5"hello"s6"你好🇨🇳"s3"xyz"a3{uxuyuz}
c15"my_package_User"2{s4"name"s3"age"}o0{s3"Tom"i18;}
public final void writeInteger(int i) throws IOException;
序列化 int
类型数据 i
。
public final void writeLong(long l) throws IOException;
序列化 long
类型数据 l
。
public final void writeBigInteger(BigInteger bi) throws IOException;
序列化 BigInteger
类型数据 bi
。
public final void writeFloat(float f) throws IOException;
序列化 float
类型数据 f
。
public final void writeDouble(double d) throws IOException;
序列化 double
类型数据 d
。
public final void writeBigDecimal(BigDecimal bd) throws IOException;
序列化 BigDecimal
类型数据 bd
。
public final void writeNaN() throws IOException;
序列化 NaN
。
public final void writeInfinity(boolean positive) throws IOException;
序列化正负无穷大。
public final void writeNull() throws IOException;
序列化 null
。
public final void writeEmpty() throws IOException;
序列化空串。
public final void writeBoolean(boolean b) throws IOException;
序列化 boolean
类型数据 b
。
public final void writeDate(Date date) throws IOException;
public final void writeDate(Time time) throws IOException;
public final void writeDate(Timestamp time) throws IOException;
public final void writeDate(java.util.Date date) throws IOException;
public final void writeDate(Calendar calendar) throws IOException;
序列化日期时间类型数据。
public final void writeDateWithRef(Date date) throws IOException;
public final void writeDateWithRef(Time time) throws IOException;
public final void writeDateWithRef(Timestamp time) throws IOException;
public final void writeDateWithRef(java.util.Date date) throws IOException;
public final void writeDateWithRef(Calendar calendar) throws IOException;
序列化日期时间类型数据。如果该值之前被序列化过,则作为引用序列化。
public final void writeTime(Time time) throws IOException;
public final void writeTimeWithRef(Time time) throws IOException;
这俩方法仅仅是 writeDate
和 writeDateWithRef
方法的别名。
public final void writeBytes(byte[] bytes) throws IOException;
序列化 byte[] 类型数据。
public final void writeBytesWithRef(byte[] bytes) throws IOException;
序列化 byte[] 类型数据。如果该值之前被序列化过,则作为引用序列化。
public final void writeUTF8Char(char c) throws IOException;
序列化字符类型 c
。
public final void writeString(String s) throws IOException;
public final void writeString(StringBuilder s) throws IOException;
public final void writeString(StringBuffer s) throws IOException;
public final void writeString(char[] s) throws IOException;
序列化字符串类型数据。
public final void writeStringWithRef(String s) throws IOException;
public final void writeStringWithRef(StringBuilder s) throws IOException;
public final void writeStringWithRef(StringBuffer s) throws IOException;
public final void writeStringWithRef(char[] s) throws IOException;
序列化字符串类型数据。如果该值之前被序列化过,则作为引用序列化。
public final void writeUUID(UUID uuid) throws IOException;
序列化 UUID 类型数据。
public final void writeUUIDWithRef(UUID uuid) throws IOException;
序列化 UUID 类型数据。如果该值之前被序列化过,则作为引用序列化。
public final void writeArray(short[] array) throws IOException;
public final void writeArray(int[] array) throws IOException;
public final void writeArray(long[] array) throws IOException;
public final void writeArray(float[] array) throws IOException;
public final void writeArray(double[] array) throws IOException;
public final void writeArray(boolean[] array) throws IOException;
public final void writeArray(Date[] array) throws IOException;
public final void writeArray(Time[] array) throws IOException;
public final void writeArray(Timestamp[] array) throws IOException;
public final void writeArray(java.util.Date[] array) throws IOException;
public final void writeArray(Calendar[] array) throws IOException;
public final void writeArray(String[] array) throws IOException;
public final void writeArray(StringBuilder[] array) throws IOException;
public final void writeArray(StringBuffer[] array) throws IOException;
public final void writeArray(UUID[] array) throws IOException;
public final void writeArray(char[][] array) throws IOException;
public final void writeArray(byte[][] array) throws IOException;
public final void writeArray(BigInteger[] array) throws IOException;
public final void writeArray(BigDecimal[] array) throws IOException;
public final void writeArray(Object[] array) throws IOException;
public final void writeArray(AtomicIntegerArray array) throws IOException;
public final void writeArray(AtomicLongArray array) throws IOException;
public final void writeArray(AtomicReferenceArray array) throws IOException;
public final void writeArray(Object array) throws IOException;
序列化各种数组类型数据。
public final void writeArrayWithRef(short[] array) throws IOException;
public final void writeArrayWithRef(int[] array) throws IOException;
public final void writeArrayWithRef(long[] array) throws IOException;
public final void writeArrayWithRef(float[] array) throws IOException;
public final void writeArrayWithRef(double[] array) throws IOException;
public final void writeArrayWithRef(boolean[] array) throws IOException;
public final void writeArrayWithRef(Date[] array) throws IOException;
public final void writeArrayWithRef(Time[] array) throws IOException;
public final void writeArrayWithRef(Timestamp[] array) throws IOException;
public final void writeArrayWithRef(java.util.Date[] array) throws IOException;
public final void writeArrayWithRef(Calendar[] array) throws IOException;
public final void writeArrayWithRef(String[] array) throws IOException;
public final void writeArrayWithRef(StringBuilder[] array) throws IOException;
public final void writeArrayWithRef(StringBuffer[] array) throws IOException;
public final void writeArrayWithRef(UUID[] array) throws IOException;
public final void writeArrayWithRef(char[][] array) throws IOException;
public final void writeArrayWithRef(byte[][] array) throws IOException;
public final void writeArrayWithRef(BigInteger[] array) throws IOException;
public final void writeArrayWithRef(BigDecimal[] array) throws IOException;
public final void writeArrayWithRef(Object[] array) throws IOException;
public final void writeArrayWithRef(AtomicIntegerArray array) throws IOException;
public final void writeArrayWithRef(AtomicLongArray array) throws IOException;
public final void writeArrayWithRef(AtomicReferenceArray array) throws IOException;
public final void writeArrayWithRef(Object array) throws IOException;
序列化各种数组类型数据。如果该值之前被序列化过,则作为引用序列化。
public final void writeCollection(Collection<?> collection) throws IOException;
序列化各种 Collection 类型。
public final void writeCollectionWithRef(Collection<?> collection) throws IOException;
序列化各种 Collection 类型。如果该值之前被序列化过,则作为引用序列化。
public final void writeList(List<?> list) throws IOException;
序列化各种 List 类型。
public final void writeListWithRef(List<?> list) throws IOException;
序列化各种 List 类型。如果该值之前被序列化过,则作为引用序列化。
public final void writeMap(Map<?, ?> map) throws IOException;
序列化各种 Map 类型。
public final void writeMapWithRef(Map<?, ?> map) throws IOException;
序列化各种 Map 类型。如果该值之前被序列化过,则作为引用序列化。
public final void writeObject(Object object) throws IOException;
序列化自定义类型对象类型。
public final void writeObjectWithRef(Object object) throws IOException;
序列化自定义类型对象类型。如果该值之前被序列化过,则作为引用序列化。
public final void reset();
将序列化的引用计数器重置。
public HproseReader(InputStream stream);
public HproseReader(InputStream stream, boolean simple);
public HproseReader(InputStream stream, HproseMode mode);
public HproseReader(InputStream stream, HproseMode mode, boolean simple);
public HproseReader(ByteBuffer buffer);
public HproseReader(ByteBuffer buffer, boolean simple);
public HproseReader(ByteBuffer buffer, HproseMode mode);
public HproseReader(ByteBuffer buffer, HproseMode mode, boolean simple);
public HproseReader(byte[] bytes);
public HproseReader(byte[] bytes, boolean simple);
public HproseReader(byte[] bytes, HproseMode mode);
public HproseReader(byte[] bytes, HproseMode mode, boolean simple)
stream
、buffer
或 bytes
是数据源,反序列化的数据将会从该对象中读取。
mode
参数表示序列化对象的方式,三种方式在上面介绍 HproseMode
时大致上已经介绍过了。默认是 MemberMode
。
simple
如果为 true
,则不使用引用方式反序列化,通常在反序列化的数据中不包含引用类型数据时,设置为 true
可以加快速度。当包含引用类型数据时,需要设置为 false
(即默认值),否则会抛出异常。
只读字段,返回当前用于读取反序列化数据的 InputStream
实例对象。
public final void checkTag(int tag, int expectTag) throws HproseException;
public final void checkTag(int expectTag) throws IOException;
如果 tag
参数不存在,则自动读取当前流中的一个字符作为 tag
值。如果 expectTag
和 tag
不一致,则抛出异常。
该方法没有返回值。
public final int checkTags(int tag, String expectTags) throws IOException;
public final int checkTags(String expectTags) throws IOException;
如果 tag
参数不存在,则自动读取当前流中的一个字符作为 tag
值。如果 expectTags
中不包含 tag
,则抛出异常。
expectTags
是一个字符串,该字符串中包含一个或多个 HproseTags
中的枚举值,但通常不会用其它取值。
如果该方法执行成功,返回 tag
值。
public final Object unserialize() throws IOException;
public final Object unserialize(Type type) throws IOException;
public final <T> T unserialize(Class<T> type) throws IOException;
从当前数据流中读取数据并返回反序列化结果。如果当前数据流中包含有多个序列化数据,则一次只返回一个结果。
如果反序列化过程中发生错误,则会抛出异常。
参数为要反序列化的数据类型,如果未指定,则按照数据的默认类型返回。
下面我们来举一个例子:
package hprose.example.io;
import hprose.io.ByteBufferStream;
import hprose.io.HproseClassManager;
import hprose.io.HproseReader;
import hprose.io.HproseWriter;
import java.io.IOException;
import java.util.Arrays;
public class ReaderExam {
public static void main(String[] args) throws IOException {
HproseClassManager.register(User.class, "my_package_User");
ByteBufferStream stream = new ByteBufferStream();
HproseWriter writer = new HproseWriter(stream.getOutputStream());
writer.serialize(0);
writer.serialize(1);
writer.serialize(2);
writer.serialize(3);
writer.serialize(123);
writer.serialize(3.14);
writer.serialize("hello");
writer.serialize("你好🇨🇳");
writer.serialize(new char[] {'x', 'y', 'z'});
writer.serialize(new Object[] {"x", "y", "z"});
User user = new User();
user.name = "Tom";
user.age = 18;
writer.serialize(user);
stream.flip();
HproseReader reader = new HproseReader(stream.getInputStream());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(reader.unserialize());
System.out.println(Arrays.toString(reader.unserialize(char[].class)));
System.out.println(reader.unserialize());
User user2 = reader.unserialize(User.class);
System.out.println(user2.name);
System.out.println(user2.age);
}
}
该程序运行结果为:
0
1
2
3
123
3.14
hello
你好🇨🇳
[x, y, z]
[x, y, z]
Tom
18
public final void reset();
将反序列化的引用计数器重置。
public final byte readByte(int tag) throws IOException;
public final short readShort(int tag) throws IOException;
public final int readInt(int tag) throws IOException;
public final long readLong(int tag) throws IOException;
从当前位置开始读取,直到遇到 tag
为止。并将读取的字符串转换为整数。该方法主要用于服务协议解析,用户通常用不到该方法。
如果反序列化过程中发生错误,则会抛出异常。
public final int readIntWithoutTag() throws IOException
从当前数据流中反序列化一个 int
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagInteger
。
如果反序列化过程中发生错误,则会抛出异常。
public final BigInteger readBigIntegerWithoutTag() throws IOException
从当前数据流中反序列化一个 BigInteger
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagInteger
或 HproseTags.TagLong
。
如果反序列化过程中发生错误,则会抛出异常。
public final long readLongWithoutTag() throws IOException;
从当前数据流中反序列化一个 long
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagInteger
或 HproseTags.TagLong
。
如果反序列化过程中发生错误,则会抛出异常。
public final double readDoubleWithoutTag() throws IOException;
从当前数据流中反序列化一个 double
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagInteger
, HproseTags.TagLong
或 HproseTags.TagDouble
。
如果反序列化过程中发生错误,则会抛出异常。
public final double readInfinityWithoutTag() throws IOException;
从当前数据流中反序列化一个无穷大结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagInfinity
。
如果反序列化过程中发生错误,则会抛出异常。
public final Calendar readDateWithoutTag()throws IOException;
从当前数据流中反序列化一个日期(日期时间)型数据并以 Calendar
类型返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagDate
。
如果反序列化过程中发生错误,则会抛出异常。
public final Calendar readTimeWithoutTag() throws IOException;
从当前数据流中反序列化一个时间型数据并以 Calendar
类型返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagTime
。
如果反序列化过程中发生错误,则会抛出异常。
public final byte[] readBytesWithoutTag() throws IOException;
从当前数据流中反序列化一个 byte[]
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagBytes
。
如果反序列化过程中发生错误,则会抛出异常。
public final String readUTF8CharWithoutTag() throws IOException;
从当前数据流中反序列化一个 UTF8Char
类型的数据,并以 String
结果返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagUTF8Char
。
如果反序列化过程中发生错误,则会抛出异常。
public final String readStringWithoutTag() throws IOException;
从当前数据流中反序列化一个 String
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagString
。
如果反序列化过程中发生错误,则会抛出异常。
public final char[] readCharsWithoutTag() throws IOException;
从当前数据流中反序列化一个 char[]
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagString
。
如果反序列化过程中发生错误,则会抛出异常。
public final UUID readUUIDWithoutTag() throws IOException;
从当前数据流中反序列化一个 UUID
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagGuid
。
如果反序列化过程中发生错误,则会抛出异常。
public final ArrayList readListWithoutTag() throws IOException;
从当前数据流中反序列化一个 ArrayList
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagList
。
如果反序列化过程中发生错误,则会抛出异常。
public final HashMap readMapWithoutTag() throws IOException
从当前数据流中反序列化一个 HashMap
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagMap
。
如果反序列化过程中发生错误,则会抛出异常。
public final Object readObjectWithoutTag(Class<?> type) throws IOException;
从当前数据流中反序列化一个 Object
结果并返回,该方法假设序列化标记已被读取,并且其值为 HproseTags.TagObject
。
参数 type
为反序列化的类,当 type
为 null
,并且反序列化的类查找不到(即没有注册),则以 HashMap<String, Object>
返回结果。
如果反序列化过程中发生错误,则会抛出异常。
public final boolean readBoolean() throws IOException;
从当前数据流中反序列化一个布尔值结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Boolean readBooleanObject() throws IOException;
从当前数据流中反序列化一个布尔值结果并返回。
跟 readBoolean
的区别在于,当反序列化 null
时,readBoolean
返回 false
,而 readBooleanObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final char readChar() throws IOException;
从当前数据流中反序列化一个字符结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Character readCharObject() throws IOException;
从当前数据流中反序列化一个字符结果并返回。
跟 readChar
的区别在于,当反序列化 null
时,readChar
返回 '\0'
,而 readCharObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final byte readByte() throws IOException;
从当前数据流中反序列化一个 byte
结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Byte readByteObject() throws IOException;
从当前数据流中反序列化一个 Byte
结果并返回。
跟 readByte
的区别在于,当反序列化 null
时,readByte
返回 0
,而 readByteObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final short readShort() throws IOException;
从当前数据流中反序列化一个 short
结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Short readShortObject() throws IOException;
从当前数据流中反序列化一个 Short
结果并返回。
跟 readShort
的区别在于,当反序列化 null
时,readShort
返回 0
,而 readShortObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final int readInt() throws IOException;
从当前数据流中反序列化一个 int
结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Integer readIntObject() throws IOException;
从当前数据流中反序列化一个 Integer
结果并返回。
跟 readInt
的区别在于,当反序列化 null
时,readInt
返回 0
,而 readIntObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final long readLong() throws IOException;
从当前数据流中反序列化一个 long
结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Long readLongObject() throws IOException;
从当前数据流中反序列化一个 Long
结果并返回。
跟 readLong
的区别在于,当反序列化 null
时,readLong
返回 0
,而 readLongObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final float readFloat() throws IOException;
从当前数据流中反序列化一个 float
结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Float readFloatObject() throws IOException;
从当前数据流中反序列化一个 Float
结果并返回。
跟 readFloat
的区别在于,当反序列化 null
时,readFloat
返回 0.0f
,而 readFloatObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final double readDouble() throws IOException;
从当前数据流中反序列化一个 double
结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Double readDoubleObject() throws IOException
从当前数据流中反序列化一个 Double
结果并返回。
跟 readDouble
的区别在于,当反序列化 null
时,readDouble
返回 0.0
,而 readDoubleObject
返回 null
。
如果反序列化过程中发生错误,则会抛出异常。
public final <T extends Enum<T>> T readEnum(Class<T> type) throws IOException;
从当前数据流中反序列化一个枚举类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final String readString() throws IOException;
从当前数据流中反序列化一个 String
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final BigInteger readBigInteger() throws IOException;
从当前数据流中反序列化一个 BigInteger
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Date readDate() throws IOException;
从当前数据流中反序列化一个 Date
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Time readTime() throws IOException;
从当前数据流中反序列化一个 Time
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final java.util.Date readDateTime() throws IOException;
从当前数据流中反序列化一个 java.util.Date
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Timestamp readTimestamp() throws IOException;
从当前数据流中反序列化一个 Timestamp
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Calendar readCalendar() throws IOException;
从当前数据流中反序列化一个 Calendar
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final BigDecimal readBigDecimal() throws IOException;
从当前数据流中反序列化一个 BigDecimal
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final StringBuilder readStringBuilder() throws IOException;
从当前数据流中反序列化一个 StringBuilder
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final StringBuffer readStringBuffer() throws IOException;
从当前数据流中反序列化一个 StringBuffer
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final UUID readUUID() throws IOException;
从当前数据流中反序列化一个 UUID
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final void readArray(Type[] types, Object[] a, int count) throws IOException;
public final Object[] readArray(int count) throws IOException;
从当前数据流中反序列化一个数组类型结果并返回。该数组的元素个数 count
部分已经读取,types
中存储的是每个元素的类型,a
为存储结果的数组。
未指定类型的情况下,以默认类型反序列化数组元素。
该方法在 Hprose 服务实现的内部被使用,用户通常不需要使用该方法。
如果反序列化过程中发生错误,则会抛出异常。
public final Object[] readObjectArray() throws IOException;
从当前数据流中反序列化一个 Object[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final boolean[] readBooleanArray() throws IOException;
从当前数据流中反序列化一个 boolean[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final char[] readCharArray() throws IOException;
从当前数据流中反序列化一个 char[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final byte[] readByteArray() throws IOException;
从当前数据流中反序列化一个 byte[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final short[] readShortArray() throws IOException;
从当前数据流中反序列化一个 short[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final short[] readShortArray() throws IOException;
从当前数据流中反序列化一个 short[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final int[] readIntArray() throws IOException;
从当前数据流中反序列化一个 int[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final long[] readLongArray() throws IOException;
从当前数据流中反序列化一个 long[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final float[] readFloatArray() throws IOException;
从当前数据流中反序列化一个 float[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final double[] readDoubleArray() throws IOException;
从当前数据流中反序列化一个 double[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final String[] readStringArray() throws IOException;
从当前数据流中反序列化一个 String[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final BigInteger[] readBigIntegerArray() throws IOException;
从当前数据流中反序列化一个 BigInteger[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Date[] readDateArray() throws IOException;
从当前数据流中反序列化一个 Date[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Time[] readTimeArray() throws IOException;
从当前数据流中反序列化一个 Time[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Timestamp[] readTimestampArray() throws IOException;
从当前数据流中反序列化一个 Timestamp[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final java.util.Date[] readDateTimeArray() throws IOException;
从当前数据流中反序列化一个 java.util.Date[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final Calendar[] readCalendarArray() throws IOException;
从当前数据流中反序列化一个 Calendar[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final BigDecimal[] readBigDecimalArray() throws IOException;
从当前数据流中反序列化一个 BigDecimal[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final StringBuilder[] readStringBuilderArray() throws IOException;
从当前数据流中反序列化一个 StringBuilder[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final StringBuffer[] readStringBufferArray() throws IOException;
从当前数据流中反序列化一个 StringBuffer[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final UUID[] readUUIDArray() throws IOException;
从当前数据流中反序列化一个 UUID[]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final char[][] readCharsArray() throws IOException;
从当前数据流中反序列化一个 char[][]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
public final byte[][] readBytesArray() throws IOException;
从当前数据流中反序列化一个 byte[][]
类型结果并返回。
如果反序列化过程中发生错误,则会抛出异常。
该类是个静态类,只有两个方法,序列化和反序列化。
public final static OutputStream serialize(byte b, OutputStream stream) throws IOException;
public final static OutputStream serialize(short s, OutputStream stream) throws IOException;
public final static OutputStream serialize(int i, OutputStream stream) throws IOException;
public final static OutputStream serialize(long l, OutputStream stream) throws IOException;
public final static OutputStream serialize(float f, OutputStream stream) throws IOException;
public final static OutputStream serialize(double d, OutputStream stream) throws IOException;
public final static OutputStream serialize(boolean b, OutputStream stream) throws IOException;
public final static OutputStream serialize(char c, OutputStream stream) throws IOException;
public final static OutputStream serialize(BigInteger bi, OutputStream stream) throws IOException;
public final static OutputStream serialize(BigDecimal bd, OutputStream stream) throws IOException;
public final static OutputStream serialize(Object obj, OutputStream stream) throws IOException;
public final static OutputStream serialize(Object obj, OutputStream stream, boolean simple) throws IOException;
public final static OutputStream serialize(Object obj, OutputStream stream, HproseMode mode) throws IOException;
public final static OutputStream serialize(Object obj, OutputStream stream, HproseMode mode, boolean simple) throws IOException;
public final static ByteBufferStream serialize(byte b) throws IOException;
public final static ByteBufferStream serialize(short s) throws IOException;
public final static ByteBufferStream serialize(int i) throws IOException;
public final static ByteBufferStream serialize(long l) throws IOException;
public final static ByteBufferStream serialize(float f) throws IOException;
public final static ByteBufferStream serialize(double d) throws IOException;
public final static ByteBufferStream serialize(boolean b) throws IOException;
public final static ByteBufferStream serialize(char c) throws IOException;
public final static ByteBufferStream serialize(Object obj) throws IOException;
public final static ByteBufferStream serialize(Object obj, HproseMode mode) throws IOException;
public final static ByteBufferStream serialize(Object obj, boolean simple) throws IOException;
public final static ByteBufferStream serialize(Object obj, HproseMode mode, boolean simple) throws IOException;
序列化数据到输出流,如果没有指定输出流参数,则返回一个新创建的包含序列化数据的 ByteBufferStream
对象。返回的对象已经切换到了读取状态,无需自己切换。之所以有这么多重载方法,是为了更高效的序列化。
public final static Object unserialize(ByteBufferStream stream) throws IOException;
public final static Object unserialize(ByteBufferStream stream, HproseMode mode) throws IOException;
public final static Object unserialize(ByteBufferStream stream, boolean simple) throws IOException;
public final static Object unserialize(ByteBufferStream stream, HproseMode mode, boolean simple) throws IOException;
public final static <T> T unserialize(ByteBufferStream stream, Class<T> type) throws IOException;
public final static <T> T unserialize(ByteBufferStream stream, HproseMode mode, Class<T> type) throws IOException;
public final static <T> T unserialize(ByteBufferStream stream, boolean simple, Class<T> type) throws IOException;
public final static <T> T unserialize(ByteBufferStream stream, HproseMode mode, boolean simple, Class<T> type) throws IOException;
public final static Object unserialize(ByteBuffer data) throws IOException;
public final static Object unserialize(ByteBuffer data, HproseMode mode) throws IOException;
public final static Object unserialize(ByteBuffer data, boolean simple) throws IOException;
public final static Object unserialize(ByteBuffer data, HproseMode mode, boolean simple) throws IOException;
public final static <T> T unserialize(ByteBuffer data, Class<T> type) throws IOException;
public final static <T> T unserialize(ByteBuffer data, HproseMode mode, Class<T> type) throws IOException;
public final static <T> T unserialize(ByteBuffer data, boolean simple, Class<T> type) throws IOException;
public final static <T> T unserialize(ByteBuffer data, HproseMode mode, boolean simple, Class<T> type) throws IOException;
public final static Object unserialize(byte[] data) throws IOException;
public final static Object unserialize(byte[] data, HproseMode mode) throws IOException;
public final static Object unserialize(byte[] data, boolean simple) throws IOException;
public final static Object unserialize(byte[] data, HproseMode mode, boolean simple) throws IOException;
public final static <T> T unserialize(byte[] data, Class<T> type) throws IOException;
public final static <T> T unserialize(byte[] data, HproseMode mode, Class<T> type) throws IOException;
public final static <T> T unserialize(byte[] data, boolean simple, Class<T> type) throws IOException;
public final static <T> T unserialize(byte[] data, HproseMode mode, boolean simple, Class<T> type) throws IOException;
public final static Object unserialize(InputStream stream) throws IOException;
public final static Object unserialize(InputStream stream, HproseMode mode) throws IOException;
public final static Object unserialize(InputStream stream, boolean simple) throws IOException;
public final static Object unserialize(InputStream stream, HproseMode mode, boolean simple) throws IOException;
public final static <T> T unserialize(InputStream stream, Class<T> type) throws IOException;
public final static <T> T unserialize(InputStream stream, HproseMode mode, Class<T> type) throws IOException;
public final static <T> T unserialize(InputStream stream, boolean simple, Class<T> type) throws IOException;
public final static <T> T unserialize(InputStream stream, HproseMode mode, boolean simple, Class<T> type) throws IOException;
从数据源中读取数据并返回反序列化结果。如果当前数据源中包含有多个序列化数据,则只返回第一个结果。