Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.util.Base64;

public class Main {

    public static String encodeByBase64(String string) {
        byte[] encode = Base64.encode(string.getBytes(), Base64.DEFAULT);
        String result = new String(encode);

        return result;
    }
}