Class SerializationUtils
- java.lang.Object
-
- org.apache.commons.lang.SerializationUtils
-
@Deprecated(since="2021-04-30") public class SerializationUtils extends java.lang.Object
Deprecated.Commons Lang 2 is in maintenance mode. Commons Lang 3 should be used instead.Assists with the serialization process and performs additional functionality based on serialization.
- Deep clone using serialization
- Serialize managing finally and IOException
- Deserialize managing finally and IOException
This class throws exceptions for invalid
null
inputs. Each method documents its behaviour in more detail.#ThreadSafe#
- Since:
- 1.0
-
-
Constructor Summary
Constructors Constructor Description SerializationUtils()
Deprecated.SerializationUtils instances should NOT be constructed in standard programming.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.lang.Object
clone(java.io.Serializable object)
Deprecated.Deep clone anObject
using serialization.static java.lang.Object
deserialize(byte[] objectData)
Deprecated.Deserializes a singleObject
from an array of bytes.static java.lang.Object
deserialize(java.io.InputStream inputStream)
Deprecated.Deserializes anObject
from the specified stream.static byte[]
serialize(java.io.Serializable obj)
Deprecated.Serializes anObject
to a byte array for storage/serialization.static void
serialize(java.io.Serializable obj, java.io.OutputStream outputStream)
Deprecated.Serializes anObject
to the specified stream.
-
-
-
Constructor Detail
-
SerializationUtils
public SerializationUtils()
Deprecated.SerializationUtils instances should NOT be constructed in standard programming. Instead, the class should be used as
SerializationUtils.clone(object)
.This constructor is public to permit tools that require a JavaBean instance to operate.
- Since:
- 2.0
-
-
Method Detail
-
clone
public static java.lang.Object clone(java.io.Serializable object)
Deprecated.Deep clone an
Object
using serialization.This is many times slower than writing clone methods by hand on all objects in your object graph. However, for complex object graphs, or for those that don't support deep cloning this can be a simple alternative implementation. Of course all the objects must be
Serializable
.- Parameters:
object
- theSerializable
object to clone- Returns:
- the cloned object
- Throws:
SerializationException
- (runtime) if the serialization fails
-
serialize
public static void serialize(java.io.Serializable obj, java.io.OutputStream outputStream)
Deprecated.Serializes an
Object
to the specified stream.The stream will be closed once the object is written. This avoids the need for a finally clause, and maybe also exception handling, in the application code.
The stream passed in is not buffered internally within this method. This is the responsibility of your application if desired.
- Parameters:
obj
- the object to serialize to bytes, may be nulloutputStream
- the stream to write to, must not be null- Throws:
java.lang.IllegalArgumentException
- ifoutputStream
isnull
SerializationException
- (runtime) if the serialization fails
-
serialize
public static byte[] serialize(java.io.Serializable obj)
Deprecated.Serializes an
Object
to a byte array for storage/serialization.- Parameters:
obj
- the object to serialize to bytes- Returns:
- a byte[] with the converted Serializable
- Throws:
SerializationException
- (runtime) if the serialization fails
-
deserialize
public static java.lang.Object deserialize(java.io.InputStream inputStream)
Deprecated.Deserializes an
Object
from the specified stream.The stream will be closed once the object is written. This avoids the need for a finally clause, and maybe also exception handling, in the application code.
The stream passed in is not buffered internally within this method. This is the responsibility of your application if desired.
- Parameters:
inputStream
- the serialized object input stream, must not be null- Returns:
- the deserialized object
- Throws:
java.lang.IllegalArgumentException
- ifinputStream
isnull
SerializationException
- (runtime) if the serialization fails
-
deserialize
public static java.lang.Object deserialize(byte[] objectData)
Deprecated.Deserializes a single
Object
from an array of bytes.- Parameters:
objectData
- the serialized object, must not be null- Returns:
- the deserialized object
- Throws:
java.lang.IllegalArgumentException
- ifobjectData
isnull
SerializationException
- (runtime) if the serialization fails
-
-