List of utility methods to do String Base64 Encode
byte[] | fromBase64(String b64Data) Converts a Base64-encoded string to the original byte data. byte[] decoded; try { decoded = Base64.decodeBase64(b64Data .getBytes(DEFAULT_ENCODING)); } catch (UnsupportedEncodingException uee) { Log.w(TAG, "Tried to Base64-decode a String with the wrong encoding: ", uee); ... |