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 str) {
try {
byte[] result = Base64.decode(str, Base64.DEFAULT);
return new String(result);
} catch (Exception e) {
return str;
}
}
}