Encodes a byte array into Base64 notation. Equivalent to calling encodeBytes(source, 0, source.length) @param source The data to convert @since 1.4
(byte[] source)
| 244 | * @since 1.4 |
| 245 | */ |
| 246 | public static String encode(byte[] source) { |
| 247 | return encode(source, 0, source.length, ALPHABET, true); |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * Encodes a byte array into web safe Base64 notation. |
no test coverage detected