Here you can find the source of decode(String src)
private static byte[] decode(String src)
//package com.java2s; import android.util.Base64; public class Main { private static byte[] decode(String src) { return Base64.decode(src, Base64.DEFAULT); }/*from w ww .j av a2s.co m*/ }