Java tutorial
//package com.java2s; import android.util.Base64; import java.io.UnsupportedEncodingException; public class Main { public static String encodeBase64(String str, String charset, int flags) throws UnsupportedEncodingException { return Base64.encodeToString(str.getBytes(charset), flags); } }