Here you can find the source of fromBase64(String base64)
public static String fromBase64(String base64)
//package com.java2s; //License from project: Open Source License import java.nio.charset.StandardCharsets; import javax.xml.bind.DatatypeConverter; public class Main { public static String fromBase64(String base64) { byte[] encodedHelloBytes = DatatypeConverter.parseBase64Binary(base64); return new String(encodedHelloBytes, StandardCharsets.UTF_8); }/*from www . j a va2 s.c om*/ }