Java tutorial
//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; } }