JAVA BASE64 (ENCODE, DECODE) to String

import org.apache.commons.codec.binary.Base64;

String value = "TEST";
String result;

result = new String(Base64.decodeBase64(value.getBytes()),"UTF-8");

You may also like...