Android Base64 Decode decode(String base64)

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

Description

decode

Declaration

public static byte[] decode(String base64) throws Exception 

Method Source Code

//package com.java2s;

import android.util.Base64;

public class Main {
    public static byte[] decode(String base64) throws Exception {
        return Base64.decode(base64.getBytes(), Base64.DEFAULT);
    }/* w  ww  .  j  ava  2s.  c o  m*/
}

Related

  1. decodeBase64(String value)
  2. decodeBase64(String src)
  3. decode(String data)
  4. decode(String str)
  5. decode(String s)
  6. decode(String str)