可能是
ArrayIndexOutOfBoundsException。该
-61假想是指数。
从http://kickjava.com/src/org/apache/commons/prec/binary/base64.java.htm中:
134 private static boolean isbase64(byte octect) {135 if (octect == PAD) {136 return true;137 } else if (base64Alphabet[octect] == -1) { // <---138 return false;139 } else {140 return true;141 }142 }显然,输入不是base64编码的。



