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 byte[] base64EncodeByte(final String data) {
        return Base64.encode(data.getBytes(), Base64.DEFAULT);
    }

    public static byte[] base64EncodeByte(final byte[] data) {
        return Base64.encode(data, Base64.DEFAULT);
    }
}