Android Base64 Byte Array Decode decode(final byte[] data)

Here you can find the source of decode(final byte[] data)

Description

decode

License

Apache License

Declaration

public static String decode(final byte[] data) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import android.util.Base64;

public class Main {
    public static String decode(final byte[] data) {
        return new String(Base64.decode(data, Base64.DEFAULT));
    }//from w w w  .  ja  v a 2 s . c  o m
}

Related

  1. decode(byte[] arr)
  2. decode(char[] chars, OutputStream out)
  3. decode(char[] chars, int off, int len, OutputStream out)