Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import android.util.Base64;

public class Main {
    public static String bytesToEncodedString(byte[] bytes) {
        return Base64.encodeToString(bytes, Base64.NO_WRAP);
    }
}