Java 可序列化对象到字节数组
2022-08-31 05:00:18
假设我有一个可序列化的类。AppMessage
我想将其作为套接字传输到另一台计算机,在那里从收到的字节重建。byte[]
我怎样才能做到这一点?
假设我有一个可序列化的类。AppMessage
我想将其作为套接字传输到另一台计算机,在那里从收到的字节重建。byte[]
我怎样才能做到这一点?
准备要发送的字节数组:
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream out = null;
try {
out = new ObjectOutputStream(bos);
out.writeObject(yourObject);
out.flush();
byte[] yourBytes = bos.toByteArray();
...
} finally {
try {
bos.close();
} catch (IOException ex) {
// ignore close exception
}
}
从字节数组创建一个对象:
ByteArrayInputStream bis = new ByteArrayInputStream(yourBytes);
ObjectInput in = null;
try {
in = new ObjectInputStream(bis);
Object o = in.readObject();
...
} finally {
try {
if (in != null) {
in.close();
}
} catch (IOException ex) {
// ignore close exception
}
}
最好的方法是使用Apache Commons Lang。SerializationUtils
序列化:
byte[] data = SerializationUtils.serialize(yourObject);
要反序列化:
YourObject yourObject = SerializationUtils.deserialize(data)
如前所述,这需要Commons Lang图书馆。它可以使用 Gradle 导入:
compile 'org.apache.commons:commons-lang3:3.5'
专家:
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
这里提到的更多方式
或者,可以导入整个集合。请参阅此链接