Java Base64 Decode base64Decode(final String data)

Here you can find the source of base64Decode(final String data)

Description

base Decode

License

Apache License

Declaration

static byte[] base64Decode(final String data) 

Method Source Code

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

import java.util.Base64;

public class Main {
    static byte[] base64Decode(final String data) {
        return Base64.getDecoder().decode(data);
    }//w  w  w.  j a v  a  2s . c  o m
}

Related

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