decode Base64 with android.util.Base64 - Android File Input Output

Android examples for File Input Output:Base64

Description

decode Base64 with android.util.Base64

Demo Code


//package com.java2s;

import android.util.Base64;
import java.io.UnsupportedEncodingException;

public class Main {

    public static String decodeBase64(String encodeStr, String charset,
            int flags) throws UnsupportedEncodingException {
        return new String(Base64.decode(encodeStr, flags), charset);
    }/*  w  w w  . j av a  2  s. co  m*/
}

Related Tutorials