java两种序列化(hessian与java自带)性能实验分析报告

序列化的5w2h分析

  what:序列化是一种将java对象流化的机制

  how:将一个实现了Serializable接口的对象的状态写入byte[],传输到另外一个地方,将其读出进行反序列化得对象(含状态)。状态就是类中的属性是含有值的。

  why:方便对象在网络间进行传播,并且可以随时把对象持久化到数据库、文件等系统里

  when:对象需要远程过程调用,缓存到文件或DB中(hessian,rmi,ejb)

  where:发送接口处,写入文件的入口处

  who:发送端序列化,接收端反序列化

  how much:序列化本身是昂贵的,但软件工程本身是复杂,在解藕与性能之间架构师要做一个判断。

实验环境

?


1


SerializeException 可自定义,继承runtimeException

hessian序列化工具类

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89


package com.uet.common.utils;

import java.io.ByteArrayInputStream;

import java.io.ByteArrayOutputStream;

import java.io.IOException;

import com.caucho.hessian.io.HessianSerializerInput;

import com.caucho.hessian.io.HessianSerializerOutput;

import com.uet.common.exception.SerializeException;

public class HessianObjectSerializeUtil {

/**

*

* 纯hessian序列化

*

* @param <T>

*

* @param object

*

* @return

*

* @throws Exception

*/

public static <T> byte[] serialize(T object) {

if (object == null) {

throw new NullPointerException();

}

byte[] results = null;

ByteArrayOutputStream os = null;

HessianSerializerOutput hessianOutput = null;

try {

os = new ByteArrayOutputStream();

hessianOutput = new HessianSerializerOutput(os);

//write本身是线程安全的

hessianOutput.writeObject(object);

os.close();

results = os.toByteArray();

} catch (Exception e) {

throw new SerializeException(e);

} finally {

try {

if (os != null)

os.close();

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

return results;

}

/**

*

* 纯hessian反序列化

*

* @param bytes

*

* @return

*

* @throws Exception

*/

@SuppressWarnings("unchecked")

public static <T> T deserialize(Class<T> resultClass, byte[] bytes) {

if (bytes == null) {

throw new NullPointerException();

}

T result = null;

ByteArrayInputStream is = null;

try {

is = new ByteArrayInputStream(bytes);

HessianSerializerInput hessianInput = new HessianSerializerInput(is);

result = (T) hessianInput.readObject();

} catch (Exception e) {

throw new SerializeException(e);

} finally {

try {

if (is != null)

is.close();

} catch (IOException e) {

throw new SerializeException(e);

}

}

return result;

}

}

java自带的序列化工具类

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69


package com.uet.common.utils;

import java.io.ByteArrayInputStream;

import java.io.ByteArrayOutputStream;

import java.io.Closeable;

import java.io.IOException;

import java.io.ObjectInputStream;

import java.io.ObjectOutputStream;

import com.uet.common.exception.SerializeException;

public class ObjectsSerializeUtil{

public static <T> byte[] serialize(T value) {

if (value == null) {

throw new NullPointerException("Can‘t serialize null");

}

byte[] result = null;

ByteArrayOutputStream bos = null;

ObjectOutputStream os = null;

try {

bos = new ByteArrayOutputStream();

os = new ObjectOutputStream(bos);

os.writeObject(value);

os.close();

bos.close();

result = bos.toByteArray();

} catch (IOException e) {

throw new IllegalArgumentException("Non-serializable object", e);

} finally {

close(os);

close(bos);

}

return result;

}

@SuppressWarnings("unchecked")

public static <T> T deserialize(Class<T> resultClass,byte[] in) {

T result = null;

ByteArrayInputStream bis = null;

ObjectInputStream is = null;

try {

if (in != null) {

bis = new ByteArrayInputStream(in);

is = new ObjectInputStream(bis);

result = (T) is.readObject();

is.close();

bis.close();

}

} catch (IOException e) {

throw new SerializeException(String.format("Caught IOException decoding %d bytes of data", in == null ? 0 : in.length) + e);

} catch (ClassNotFoundException e) {

throw new SerializeException(String.format("Caught CNFE decoding %d bytes of data", in == null ? 0 : in.length) + e);

} finally {

close(is);

close(bis);

}

return result;

}

public static void close(Closeable closeable) {

if (closeable != null) {

try {

closeable.close();

} catch (Exception e) {

throw new SerializeException(e);

}

}

}

}

实验运行的类(BaseGrade您可以自己定义,但要实现Serializable接口)

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46


package com.uet.common.utils;

import com.uet.course.entity.BaseGrade;

public class SerializeTest {

private static int count=10000;

public static void main(String[] args) throws Exception {

/*BaseGrade grade = new BaseGrade();

grade.setId(120L+10);

grade.setName("唔年纪");

grade.init();

byte[] results=HessianObjectSerializeUtil.serialize(grade);*/

//System.out.println(results.length);

hessianObjectSerialize();

javaObjectSerialize();

}

public static void hessianObjectSerialize(){

long start = System.currentTimeMillis();

for(int i=0;i<count;i++){

BaseGrade grade = new BaseGrade();

grade.setId(120L+i);

grade.setName("唔年纪");

grade.init();

byte[] results=HessianObjectSerializeUtil.serialize(grade);

BaseGrade result=HessianObjectSerializeUtil.deserialize(BaseGrade.class,results);

//System.out.println(result.getId());

}

long end = System.currentTimeMillis();

System.out.println("hessianObjectSerialize耗时:"+ ((end - start) / 1000.0) + " seconds");

}

public static void javaObjectSerialize(){

long start = System.currentTimeMillis();

for(int i=0;i<count;i++){

BaseGrade grade = new BaseGrade();

grade.setId(120L+i);

grade.setName("唔年纪");

grade.init();

byte[] results=ObjectsSerializeUtil.serialize(grade);

BaseGrade result=ObjectsSerializeUtil.deserialize(BaseGrade.class,results);

//System.out.println(result.getId());

}

long end = System.currentTimeMillis();

System.out.println("javaObjectSerialize耗时:"+ ((end - start) / 1000.0) + " seconds");

}

}

序列化的字节260btye

实验结果

循环1次(运行10次平均结果):

hessianObjectSerialize耗时:0.05 seconds
javaObjectSerialize耗时:0.01 seconds

循环10次(运行10次平均结果):

hessianObjectSerialize耗时:0.06 seconds
javaObjectSerialize耗时:0.015 seconds

循环100次(运行10次平均结果):

hessianObjectSerialize耗时:0.074 seconds
javaObjectSerialize耗时:0.04 seconds

循环1000次(运行10次平均结果):

hessianObjectSerialize耗时:0.162 seconds
javaObjectSerialize耗时:0.123 seconds

循环10000次(运行10次平均结果):

hessianObjectSerialize耗时:0.6 seconds
javaObjectSerialize耗时:0.47 seconds

循环100000次

hessianObjectSerialize耗时:4.668 seconds
javaObjectSerialize耗时:4.144 seconds

实验结论

java自身所带的方法明显比hessian自带的序列化效率更高。

时间: 2024-10-18 23:14:23

java两种序列化(hessian与java自带)性能实验分析报告的相关文章

Android中两种序列化方式的比较Serializable和Parcelable

Serializable和Parcelable接口可以完成对象的序列化过程,当我们需要通过Intent和Binder传输数据时就需要使用者两种序列化方式.还有,我们需要对象持久化到存储设备或者通过网络传输给其他客户端,这个使用也需要使用Serializale来完成对象的序列化.在Android应用开发中,这两种方式都很常见,但两者方式并不相同. 1.Serializable接口 Serializable接口是Java提供的一个序列化接口,它是一个空接口,为对象提供标准的序列化和反序列化操作.使用

Android 进阶6:两种序列化方式 Serializable 和 Parcelable

什么是序列化 我们总是说着或者听说着"序列化",它的定义是什么呢? 序列化 (Serialization)将对象的状态信息转换为可以存储或传输的形式的过程.在序列化期间,对象将其当前状态写入到临时或持久性存储区.以后,可以通过从存储区中读取或反序列化对象的状态,重新创建该对象. 二进制序列化保持类型保真度,这对于在应用程序的不同调用之间保留对象的状态很有用.例如,通过将对象序列化到剪贴板,可在不同的应用程序之间共享对象.您可以将对象序列化到流.磁盘.内存和网络等等.远程处理使用序列化&

java两种单例模式

第一种 1 package com.atguigu.javase; 2 import java.io.IOException; 3 4 /** 5 * @author _aL0n4k 6 * @version 1.0 7 * @time 2015年9月2日 下午6:12:52 8 */ 9 public class Singleton_HungerMode { //单例模式 - 饥饿式 10 private Singleton_HungerMode() {} //把构造器设置为private,这

Spring中AOP的两种代理方式(Java动态代理和CGLIB代理)

第一种代理即Java的动态代理方式上一篇已经分析,在这里不再介绍,现在我们先来了解下GCLIB代理是什么?它又是怎样实现的?和Java动态代理有什么区别? cglib(Code Generation Library)是一个强大的,高性能,高质量的Code生成类库.它可以在运行期扩展Java类与实现Java接口. cglib封装了asm,可以在运行期动态生成新的class. cglib用于AOP,jdk中的proxy必须基于接口,cglib却没有这个限制. 原理区别: java动态代理是利用反射机

java两种定时器

第一种:循环执行的程序 import java.text.SimpleDateFormat;import java.util.Date;import java.util.concurrent.Executors;import java.util.concurrent.ScheduledExecutorService;import java.util.concurrent.TimeUnit;/** * java定时器 * @author lin * */public class Scheduled

Java两种核心机制

1.Java虚拟机 2.垃圾回收

Java 两种方式实现Token校验

方法一:AOP 代码如下定义一个权限注解 [java] view plain copy package com.thinkgem.jeesite.common.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Targe

Java两种延时——thread和timer

在Java中有时候需要使程序暂停一点时间,称为延时.普通延时用Thread.sleep(int)方法,这很简单.它将当前线程挂起指定的毫秒数.如 [java] view plain copy try { Thread.currentThread().sleep(1000);//毫秒 } catch(Exception e){} 在这里需要解释一下线程沉睡的时间.sleep()方法并不能够让程序"严格"的沉睡指定的时间.例如当使用5000作为sleep()方法的参数时,线 程可能在实际被

java两种创建String对象的区别

public class StringTest{     public static void main(String[] args){         String s1="abc";//只会在字符串常量池中创建一个"abc"字符串对象         String s2=new String("eieie");//会在字符串常量池中创建一个"hello"字符串对象,并且会在堆中再创建一个字符串对象     } } //第二