もともと貼りつけていたコードがバグってたやつだったので差し替え。。
public class Base64 { /** エンコード用の変換表 */ private static final char[] ENCODE = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' }; public static String encode(String str) { // デフォルトエンコーディングでエンコード return encode(str.getBytes()); } public static String encode(byte[] src) { char[] result = new char[src.length * 8]; int pos = 0; for (int i = 0; i < src.length; i += 3) { byte byte1 = src[i]; byte byte2 = (i + 1) < src.length ? src[i + 1] : 0x00; byte byte3 = (i + 2) < src.length ? src[i + 2] : 0x00; result[pos++] = ENCODE[((byte1 >> 2) & 0x3F)]; result[pos++] = ENCODE[(byte1 & 0x03) << 4 | (byte2 >>> 4) & 0xF]; if (i + 2 < src.length) { result[pos++] = ENCODE[(byte2 & 0x0F) << 2 | (byte3 >>> 6) & 0x03]; result[pos++] = ENCODE[byte3 & 0x3F]; } else if (i + 1 < src.length) { result[pos++] = ENCODE[(byte2 & 0x0F) << 2 | (byte3 >>> 6) & 0x03]; result[pos++] = '='; } else { result[pos++] = '='; result[pos++] = '='; } } return new String(result, 0, pos); } }