当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Byte Array转Object用法及代码示例


将字节数组转换为对象以及将对象转换为字节数组的过程称为反序列化和序列化。进行序列化/反序列化的类对象必须实现 Serialized 接口。

  • Serializable 是包下的标记接口‘java.io.Serialized’。
  • 字节数组:字节数组仅用于存储字节数据类型值。字节数组中元素的默认值为 0。
  • Object: 用户定义的数据类型。

对于序列化/反序列化,我们使用类 SerializationUtils。

方法(使用SerializationUtils类)

  • 序列化和反序列化是该类的两个主要函数。
  • 这个类属于包‘org.apache.commons.lang3'。

序列化(将对象转换为字节数组)

句法:

public static byte[] serialize(Serializable object)

参数:用户想要序列化的对象。

Returns: 函数将返回字节数组。

反序列化(将字节数组转换为对象)

句法:

public static Object deserialize(byte[] objectByteArray)

参数:序列化字节数组。

Returns: 函数将返回对象。

例子:

Java


// Java Program to Convert Byte Array to Object 
import java.io.*; 
import org.apache.commons.lang3.*; 
  
class gfgStudent implements Serializable { 
    public int rollNumber; 
    public String name; 
    public char gender; 
  
    public gfgStudent(int rollNumber, String name, 
                      char gender) 
    { 
        this.rollNumber = rollNumber; 
        this.name = name; 
        this.gender = gender; 
    } 
} 
  
class gfgMain { 
    public static void main(String arg[]) 
    { 
        gfgStudent student; 
        student = new gfgStudent(101, "Harsh", 'M'); 
  
        // converting Object to byte array 
        // serializing the object of gfgStudent class 
        // (student) 
        byte byteArray[] 
            = SerializationUtils.serialize(student); 
  
        gfgStudent newStudent; 
  
        // converting byte array to object 
        // deserializing the object of gfgStudent class 
        // (student) the function will return object of 
        // Object type (here we are type casting it into 
        // gfgStudent) 
        newStudent 
            = (gfgStudent)SerializationUtils.deserialize( 
                byteArray); 
  
        System.out.println("Deserialized object"); 
        System.out.println(newStudent.rollNumber); 
        System.out.println(newStudent.name); 
        System.out.println(newStudent.gender); 
    } 
}

输出:



相关用法


注:本文由纯净天空筛选整理自sharmaharsh_05大神的英文原创作品 Java Program to Convert Byte Array to Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。