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 encodeBASE64(String key) throws Exception {
        byte[] data = Base64.encode(key.getBytes(), Base64.DEFAULT);
        String str = String.valueOf(data);
        return str;// new String(Base64.encode(key.getBytes(),
                   // Base64.DEFAULT),"UTF-8");
    }
}