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 )
| 1299 | * @since 1.5 |
| 1300 | */ |
| 1301 | public static Object decodeToObject( String encodedObject ) |
| 1302 | throws java.io.IOException, java.lang.ClassNotFoundException { |
| 1303 | return decodeToObject(encodedObject,NO_OPTIONS,null); |
| 1304 | } |
| 1305 | |
| 1306 | |
| 1307 | /** |