Transforms a string into an ISO-8859-1 encoded byte array.
(final String s)
| 315 | |
| 316 | /** Transforms a string into an ISO-8859-1 encoded byte array. */ |
| 317 | public static byte[] ISO88591(final String s) { |
| 318 | return s.getBytes(CharsetUtil.ISO_8859_1); |
| 319 | } |
| 320 | |
| 321 | // ---------------------------- // |
| 322 | // Pretty-printing byte arrays. // |
no outgoing calls