- 浏览: 1329 次
- 性别:
- 来自: 天津
最新评论
文章列表
首先对象要继承Serializable接口
Java代码
private static java.lang.Object ByteToObject(byte[] bytes) {
java.lang.Object obj;
try {
//bytearray to object
ByteArrayInputStream bi = new ByteArrayInputStream(bytes);
ObjectInputStream oi = new ObjectInputStream(bi);
obj = oi.rea ...