public static Object dser(byte [] src) throws Exception{
ByteArrayInputStream baos =new ByteArrayInputStream(src);
ObjectInputStream oos =new ObjectInputStream(baos);
return oos.readObject();
}
public static Object dser(byte [] src) throws Exception{
ByteArrayInputStream baos =new ByteArrayInputStream(src);
ObjectInputStream oos =new ObjectInputStream(baos);
return oos.readObject();
}