1 2 3 4 5 6 7 8 9 public static String base64Encode(String str){ return new BASE64Encoder().encode(str.getBytes()); } public static String base64Decode(String str) throws IOException{ return new String(new BASE64Decoder().decodeBuffer(str)); } //