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