Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.util.Base64;

public class Main {

    public static String decodeBASE64(String key) throws Exception {
        byte[] data = Base64.decode(key.getBytes(), Base64.DEFAULT);
        String str = String.valueOf(data);
        return str;
    }
}