Here you can find the source of decode(String base64)
public static byte[] decode(String base64) throws Exception
//package com.java2s; import android.util.Base64; public class Main { public static byte[] decode(String base64) throws Exception { return Base64.decode(base64.getBytes(), Base64.DEFAULT); }/*from w w w. ja v a 2s . co m*/ }