Decodes data from Base64 notation. @param s the string to decode (decoded in default encoding) @return the decoded data @since 1.4
(String s)
| 416 | * @since 1.4 |
| 417 | */ |
| 418 | public static byte[] decode(String s) throws Base64DecoderException { |
| 419 | byte[] bytes = s.getBytes(); |
| 420 | return decode(bytes, 0, bytes.length); |
| 421 | } |
| 422 | |
| 423 | /** |
| 424 | * Decodes data from web safe Base64 notation. |
no test coverage detected