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