Here you can find the source of to64(String a)
public static String to64(String a)
//package com.java2s; import android.util.Base64; public class Main { public static String to64(String a) { return Base64.encodeToString(a.getBytes(), Base64.DEFAULT); }//from www. jav a 2s .com }