Android Base64 Decode base64Decode(String property)

Here you can find the source of base64Decode(String property)

Description

base Decode

Declaration

private static byte[] base64Decode(String property) throws IOException 

Method Source Code

//package com.java2s;

import java.io.IOException;

import android.util.Base64;

public class Main {
    private static byte[] base64Decode(String property) throws IOException {
        // NB: This class is internal, and you probably should use another impl
        return Base64.decode(property, Base64.DEFAULT);
    }//  w ww . j  a va2  s .c om
}

Related

  1. decode(char c)
  2. decode(String s, OutputStream os)
  3. decode(char[] arr)
  4. toString(String base64Encoded)
  5. toBytes(String base64Encoded)
  6. decode(String src)
  7. base16decode(String base16Str)
  8. base64Decode(final String text)
  9. base64ToText(String stringInput)