Java Object Deserialize deSerializeObject(byte[] data)

Here you can find the source of deSerializeObject(byte[] data)

Description

de Serialize Object

License

Apache License

Declaration

public static Object deSerializeObject(byte[] data) throws Exception 

Method Source Code


//package com.java2s;
/*//www .j  a va2  s .co  m
 * Copyright 2002-2007 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.ByteArrayInputStream;

import java.io.ObjectInputStream;

public class Main {

    public static Object deSerializeObject(byte[] data) throws Exception {
        ByteArrayInputStream bis = null;
        ObjectInputStream ois = null;
        if (data == null || data.length == 0) {
            return null;
        }
        try {
            bis = new ByteArrayInputStream(data);
            ois = new ObjectInputStream(bis);
            return ois.readObject();
        } finally {
            if (ois != null) {
                ois.close();
            }
        }
    }
}

Related

  1. deserializeObject(byte[] bytes)
  2. deserializeObject(byte[] bytes)
  3. deserializeObject(byte[] bytes)
  4. deserializeObject(byte[] data)
  5. deserializeObject(byte[] data)
  6. deserializeObject(byte[] data, Class clazz)
  7. deserializeObject(byte[] obj)
  8. deserializeObject(byte[] serializedObj)
  9. deserializeObject(File file)