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 w w w .ja v a2s.c o m }