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