Java Base64 Convert to fromBase64(String base64)

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

Description

from Base

License

Open Source License

Declaration

private static byte[] fromBase64(String base64) 

Method Source Code

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

import java.util.Base64;

public class Main {
    private static byte[] fromBase64(String base64) {
        return Base64.getDecoder().decode(base64);
    }//  ww w. j  av a  2s  . c  o  m
}

Related

  1. base64ToByteArray(String data)
  2. base64ToFile(String base64Code, String targetPath)
  3. fromBase64(byte[] buf, int start, int length)
  4. fromBase64(final String encoded)
  5. fromBase64(final String input)
  6. fromBase64(String base64Text)
  7. fromBase64(String data)
  8. fromBase64(String s)
  9. fromBase64(String str)