Here you can find the source of decode(final byte[] data)
public static String decode(final byte[] data)
//package com.java2s; //License from project: Apache License import android.util.Base64; public class Main { public static String decode(final byte[] data) { return new String(Base64.decode(data, Base64.DEFAULT)); }//from w w w . ja v a 2 s . c o m }