Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.util.Base64;
import android.util.Base64DataException;
import java.io.UnsupportedEncodingException;

public class Main {
    public static String decodeBase64(String str) throws UnsupportedEncodingException, Base64DataException {
        return new String(Base64.decode(str, Base64.DEFAULT), "UTF-8");

    }
}