Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import android.util.Base64;
public class Main {
public static String getFromBase64(String strBase64) {
byte[] b64 = strBase64.getBytes();
String result = new String(Base64.decode(b64, Base64.DEFAULT));
return result;
}
}