X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Futils%2Fstreams%2FStreamUtils.java;h=dc75090858fb56f36ecc808eb48a9819056871d5;hb=505be508ae7d3fb48122be548b310a238cfb91eb;hp=6b8251a6e692f498452d8dcacab6d0d1958318f7;hpb=c8ce09c4dc57142f94afcdc290dd79c4bddf7820;p=fanfix.git diff --git a/src/be/nikiroo/utils/streams/StreamUtils.java b/src/be/nikiroo/utils/streams/StreamUtils.java index 6b8251a..dc75090 100644 --- a/src/be/nikiroo/utils/streams/StreamUtils.java +++ b/src/be/nikiroo/utils/streams/StreamUtils.java @@ -1,6 +1,6 @@ package be.nikiroo.utils.streams; -import java.io.UnsupportedEncodingException; +import be.nikiroo.utils.StringUtils; /** * Some non-public utilities used in the stream classes. @@ -54,17 +54,16 @@ class StreamUtils { * Return the bytes array representation of the given {@link String} in * UTF-8. * - * @param str - * the string to transform into bytes + * @param strs + * the {@link String}s to transform into bytes * @return the content in bytes */ - static public byte[] bytes(String str) { - try { - return str.getBytes("UTF-8"); - } catch (UnsupportedEncodingException e) { - // All conforming JVM must support UTF-8 - e.printStackTrace(); - return null; + static public byte[][] getBytes(String[] strs) { + byte[][] bytes = new byte[strs.length][]; + for (int i = 0; i < strs.length; i++) { + bytes[i] = StringUtils.getBytes(strs[i]); } + + return bytes; } }