Update JdkSerializeTool.java

优化了关闭流的操作
2.4.2
oddityyyy 12 months ago committed by GitHub
parent 72963e4716
commit f7319415fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,16 +51,18 @@ public class JdkSerializeTool {
* @return
*/
public static <T> Object deserialize(byte[] bytes, Class<T> clazz) {
ObjectInputStream ois = null;
ByteArrayInputStream bais = null;
try {
// 反序列化
bais = new ByteArrayInputStream(bytes);
ObjectInputStream ois = new ObjectInputStream(bais);
ois = new ObjectInputStream(bais);
return ois.readObject();
} catch (Exception e) {
logger.error(e.getMessage(), e);
} finally {
try {
ois.close();
bais.close();
} catch (IOException e) {
logger.error(e.getMessage(), e);

Loading…
Cancel
Save