Here you can find the source of encode(byte[] src)
private static String encode(byte[] src)
//package com.java2s; import android.util.Base64; public class Main { private static String encode(byte[] src) { return Base64.encodeToString(src, Base64.DEFAULT); }//from w w w .j a v a2 s . c om }