net.ymate.platform.cache.impl.DefaultSerializer Maven / Gradle / Ivy
/*
* Copyright 2007-2017 the original author or authors.
*
* 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.
*/
package net.ymate.platform.cache.impl;
import net.ymate.platform.cache.ISerializer;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.ArrayUtils;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
/**
* @author 刘镇 ([email protected]) on 15/12/6 上午1:41
* @version 1.0
*/
public class DefaultSerializer implements ISerializer {
public byte[] serialize(Object object) throws Exception {
ObjectOutputStream _output = null;
try {
ByteArrayOutputStream _stream = new ByteArrayOutputStream();
_output = new ObjectOutputStream(_stream);
_output.writeObject(object);
return _stream.toByteArray();
} finally {
IOUtils.closeQuietly(_output);
}
}
public Object deserialize(byte[] bytes) throws Exception {
if (ArrayUtils.isEmpty(bytes)) {
return null;
}
ObjectInputStream _input = null;
try {
_input = new ObjectInputStream(new ByteArrayInputStream(bytes));
return _input.readObject();
} finally {
IOUtils.closeQuietly(_input);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy