Android Base64 Decode from64(String a)

Here you can find the source of from64(String a)

Description

from

Declaration

public static String from64(String a) 

Method Source Code

//package com.java2s;

import android.util.Base64;

public class Main {
    public static String from64(String a) {
        return new String(Base64.decode(a, Base64.DEFAULT));
    }/*  w w  w .j  a  v  a  2 s . com*/
}

Related

  1. base64Decode(String property)
  2. decode(String src)
  3. base16decode(String base16Str)
  4. base64Decode(final String text)
  5. base64ToText(String stringInput)
  6. fromBase64(String encoded)
  7. decryptBase64Text(String key, String src)