Here you can find the source of fromBase64(String base64)
private static byte[] fromBase64(String base64)
//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 }