Java tutorial
//package com.java2s; import android.util.Base64; public class Main { public static String getBASE64(String s) { return new String(Base64.encode(s.getBytes(), Base64.DEFAULT)); } public static String encode(byte[] bytes) throws Exception { return new String(Base64.encode(bytes, Base64.DEFAULT)); } }