Java Object to Byte Array serializeToByteArray(Serializable object)

Here you can find the source of serializeToByteArray(Serializable object)

Description

Serializes an object to byte array

License

Apache License

Declaration

public static byte[] serializeToByteArray(Serializable object) throws IOException 

Method Source Code

//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();
    }
}

Related

  1. getBytes(Object v, byte[] defaultValue)
  2. serializeAsByteArray(Object b)
  3. serializeToByteArray(Object obj)
  4. serializeToByteArray(Object obj)
  5. serializeToByteArray(Object object)
  6. serializeToByteArray(Serializable value)
  7. serializeToByteArrayNoHeader(Serializable o)
  8. serializeToBytes(Serializable object)
  9. serializeToBytes(Serializable object)