(byte[] ser)
| 45 | } |
| 46 | |
| 47 | public static Object deserialize(byte[] ser) throws IOException, ClassNotFoundException { |
| 48 | System.out.println("deserialize obj"); |
| 49 | final ByteArrayInputStream in = new ByteArrayInputStream(ser); |
| 50 | final ObjectInputStream objIn = new ObjectInputStream(in); |
| 51 | return objIn.readObject(); |
| 52 | } |
| 53 | |
| 54 | |
| 55 | /** |