코드
public String byteToString() {
String string = "test";
String encoded = Base64.getEncoder().encodeToString(string.getBytes(StandardCharsets.UTF_8));
return encoded;
}
결과
dGVzdA==
코드
public String stringToByte() {
String encoded = "dGVzdA==";
byte[] decoded = Base64.getDecoder().decode(encoded);
String result = new String(decoded);
return result;
}
결과
test