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); }/* w ww . j ava 2s. c o m*/ }