Here you can find the source of encode(byte[] bytes)
public static String encode(byte[] bytes) throws Exception
//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)); }//from ww w .j ava2 s . co m }