Attempts to decode Base64 data and deserialize a Java Object within. Returns null if there was an error. @param encodedObject The Base64 data to decode @return The decoded and deserialized object @throws NullPointerException if encodedObject is null @throws java.io.IOException if there is
( String encodedObject )
| 1312 | * @since 1.5 |
| 1313 | */ |
| 1314 | public static Object decodeToObject( String encodedObject ) |
| 1315 | throws java.io.IOException, java.lang.ClassNotFoundException { |
| 1316 | return decodeToObject(encodedObject,NO_OPTIONS,null); |
| 1317 | } |
| 1318 | |
| 1319 | |
| 1320 | /** |