Java tutorial
//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); } }