Encodes a byte array into Base64 notation. Does not GZip-compress data. @param source The data to convert @since 1.4
(byte[] source)
| 2040 | * @since 1.4 |
| 2041 | */ |
| 2042 | public static String encodeBytes(byte[] source) { |
| 2043 | return encodeBytes(source, 0, source.length, NO_OPTIONS); |
| 2044 | } // end encodeBytes |
| 2045 | |
| 2046 | |
| 2047 | /** |
no test coverage detected