Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.text.TextUtils;
import android.util.Base64;

public class Main {
    public static String decode(String decodecon) {
        if (TextUtils.isEmpty(decodecon)) {
            return "";
        }
        return new String(Base64.decode(decodecon, Base64.DEFAULT));

    }
}