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");
by 동호 윤 · Published · Updated
import org.apache.commons.codec.binary.Base64;
String value = "TEST";
String result;
result = new String(Base64.decodeBase64(value.getBytes()),"UTF-8");
by 동호 윤 · Published 2021년 10월 29일 · Last modified 2021년 12월 30일
by 동호 윤 · Published 2021년 03월 03일 · Last modified 2023년 07월 19일
by 동호 윤 · Published 2021년 02월 18일 · Last modified 2021년 03월 17일
Follow:
최신 댓글