47484950515253545556575859606162636465
} } } public Object deserialize(InputStream is) throws Exception { Hessian2Input hi = null; try { hi = new Hessian2Input(is); return hi.readObject(); } finally { if (hi != null) { try { hi.close(); } catch (IOException e) { } } } }