Java可序列化对象到字节数组

Java可序列化对象到字节数组,第1张

Java可序列化对象字节数组

准备要发送的字节数组:

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  }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4985438.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存