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 {
    /**
     * Converts from String to byte array
     * @param str - The String to be decoded
     * @return - The returned byte array
     */
    public static byte[] decode(String str) {
        return Base64.decode(str.getBytes(), Base64.DEFAULT);
    }
}