Java Base64 Decode base64Decode(byte[] textBytes)

Here you can find the source of base64Decode(byte[] textBytes)

Description

base Decode

License

Open Source License

Declaration

public static byte[] base64Decode(byte[] textBytes) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.util.Base64;

public class Main {
    public static byte[] base64Decode(byte[] textBytes) {
        // return fileBytes;

        System.out.println("decoding fileBytes");
        byte[] bytes = Base64.getDecoder().decode(textBytes);
        return bytes;
    }/*from  ww  w .j a v  a2 s  .co  m*/
}

Related

  1. base64CodeDecode(String fileData)
  2. Base64Decode(byte[] base64Data)
  3. base64Decode(byte[] data)
  4. base64Decode(char[] a_data)
  5. base64Decode(final String data)
  6. base64Decode(final String s)
  7. base64Decode(String _s, String _enc)