자바 base64 decode()

1 개요[ | ]

자바 base64_decode()
import java.util.Base64;
public class MyClass {
    public static void main(String args[]) {
        System.out.println( new String(Base64.getDecoder().decode("VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw==")) );
        System.out.println( new String(Base64.getDecoder().decode("4piFQeqwgOOBguS4rQ==")) );
        // This is an encoded string
        // ★A가あ中
    }
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}