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년 11월 04일 · Last modified 2025년 03월 29일
by 동호 윤 · Published 2021년 10월 29일 · Last modified 2025년 03월 29일
by 동호 윤 · Published 2021년 03월 03일 · Last modified 2025년 03월 29일
Follow:
최신 댓글