Exemple #1
0
 public static ArrayList<Byte> subseq(char[] fullArray) {
   byte[] fullByteArray = new byte[fullArray.length];
   StringUtil.charsToBytes(fullArray, 0, fullArray.length, fullByteArray, 0);
   return subseq(fullByteArray);
 }