Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import android.util.Base64;
public class Main {
public static String decode(String s) {
if (s == null)
return null;
try {
return new String(Base64.decode(s, Base64.DEFAULT));
} catch (Exception e) {
return null;
}
}
}