import java.util.Base64;
String decoded = new String(Base64.getDecoder().decode("base64input".getBytes()));
Decode base64
decode base64 data to a string
0 Comments
Add Comment
Log in to add a comment
import java.util.Base64;
String decoded = new String(Base64.getDecoder().decode("base64input".getBytes()));
Decode base64
decode base64 data to a string
Log in to add a comment