Encodes the specified byte array, and returns the encoded String.
(byte[] bytes)
| 144 | |
| 145 | /** Encodes the specified byte array, and returns the encoded {@code String}. */ |
| 146 | public String encode(byte[] bytes) { |
| 147 | return encode(bytes, 0, bytes.length); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Encodes the specified range of the specified byte array, and returns the encoded {@code |
no test coverage detected