1import java.util.Base64;
2
3class Base64Decode {
4 public static void main(String[] args) {
5 String b64 = "Z3VydQ==";
6 byte[] decoder = Base64.getDecoder().decode(b64);
7 String str = new String(decoder);
8 System.out.println(str); //-> "guru"
9 }
10}