List of utility methods to do Object Deserialization
Object | deserializeObject(byte[] b) deserialize Object try { ObjectInputStream in = new ObjectInputStream( new ByteArrayInputStream(b)); Object object = in.readObject(); in.close(); return object; } catch (ClassNotFoundException cnfe) { Log.e("deserializeObject", "class not found error", cnfe); ... |