Android String 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);
    }/*from  w  w w. ja v a 2s  . co  m*/
}

Related

  1. decodeWebSafe(String s)
  2. decode(String sourceStr, String compareStr, String returnStr)
  3. decode(String sourceStr, String compareStr, String returnStr, String defaultStr)
  4. decode(String str)
  5. decode(String str)
  6. decode(String source)
  7. decode(String str)
  8. decode(String str)
  9. decode(String s)