(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      * @param aObject Object ot serialize. 
34      * @return Byte array.
35      * @throws IOException
36      */
37     public static byte[] serialize(Object aObject) throws IOException {
38         ByteArrayOutputStream bos = new ByteArrayOutputStream(); 
39         ObjectOutputStream os = new ObjectOutputStream(bos);
40         os.writeObject(aObject);
41         os.flush();
42         return bos.toByteArray();
43     }
44     
45     /**
46      * Desrializes an object from a byte array. 
47      * @param <T> Type of the object.
48      * @param aData Serialized data.
49      * @param aType Type of the object.
50      * @return Object. 
51      * @throws IOException
52      * @throws ClassNotFoundException
53      */
54     public static <T> T deserialize(byte[] aData, Class<T> aType) throws IOException, ClassNotFoundException { 
55         ByteArrayInputStream bis = new ByteArrayInputStream(aData); 
56         ObjectInputStream os = new ObjectInputStream(bis); 
57         return (T)os.readObject();
58     }
59 }