(no commit message)
[utils] / support / general / src / main / java / org / wamblee / general / ObjectSerializationUtils.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.general;
17
18 import java.io.ByteArrayInputStream;
19 import java.io.ByteArrayOutputStream;
20 import java.io.IOException;
21 import java.io.ObjectInputStream;
22 import java.io.ObjectOutputStream;
23
24 /**
25  * Utility for serializating and deserializing objects.
26  * 
27  * @author Erik Brakkee
28  */
29 public class ObjectSerializationUtils {
30
31     /**
32      * Serialize an object to a byte array.
33      * 
34      * @param aObject
35      *            Object ot serialize.
36      * @return Byte array.
37      * @throws IOException
38      */
39     public static byte[] serialize(Object aObject) throws IOException {
40         ByteArrayOutputStream bos = new ByteArrayOutputStream();
41         ObjectOutputStream os = new ObjectOutputStream(bos);
42         os.writeObject(aObject);
43         os.flush();
44         return bos.toByteArray();
45     }
46
47     /**
48      * Desrializes an object from a byte array.
49      * 
50      * @param <T>
51      *            Type of the object.
52      * @param aData
53      *            Serialized data.
54      * @param aType
55      *            Type of the object.
56      * @return Object.
57      * @throws IOException
58      * @throws ClassNotFoundException
59      */
60     public static <T> T deserialize(byte[] aData, Class<T> aType)
61         throws IOException, ClassNotFoundException {
62         ByteArrayInputStream bis = new ByteArrayInputStream(aData);
63         ObjectInputStream os = new ObjectInputStream(bis);
64         return (T) os.readObject();
65     }
66 }