Here you can find the source of serializeToByteArray(Serializable object)
public static byte[] serializeToByteArray(Serializable object) throws IOException
//package com.java2s; /*-------------------------------------------------------------------------+ | | | Copyright 2005-2011 The ConQAT Project | | | | 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.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.io.Serializable; public class Main { /** Serializes an object to byte array */ public static byte[] serializeToByteArray(Serializable object) throws IOException { ByteArrayOutputStream outBuffer = new ByteArrayOutputStream(); ObjectOutputStream out = new ObjectOutputStream(outBuffer); out.writeObject(object);/*w w w . jav a 2s . c om*/ // no need to put this in finally, as we do not block file handles. // Let the GC do the work out.close(); return outBuffer.toByteArray(); } }