Android Base64 Decode decode(String src)

Here you can find the source of decode(String src)

Description

decode

Declaration

private static byte[] decode(String src) 

Method Source Code

//package com.java2s;

import android.util.Base64;

public class Main {
    private static byte[] decode(String src) {
        return Base64.decode(src, Base64.DEFAULT);
    }/*from  w ww .j av a2s.co  m*/
}

Related

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