Esempio n. 1
0
 public static byte[] decode(String s) {
   try {
     return Base64.decode(s);
   } catch (IOException exp) {
     throw new IORuntimeException(exp);
   }
 }