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...

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다