Converts byte array of default Jodd encoding to char array.
(byte[] barr)
| 143 | * Converts byte array of default Jodd encoding to char array. |
| 144 | */ |
| 145 | public final static char[] toCharArray(byte[] barr) throws UnsupportedEncodingException { |
| 146 | return new String(barr, Opslab.UTF_8).toCharArray(); |
| 147 | } |
| 148 | |
| 149 | // ---------------------------------------------------------------- find |
| 150 |
no outgoing calls
no test coverage detected