在springboot中java中使用base64转码跟解码!

首先导入所需的jar包:

import sun.misc.BASE64Decoder;

用main方法输出:

public static void main(String[] args) {
    try {
        //转码
        System.out.println(new sun.misc.BASE64Encoder().encode("666666".getBytes()));
        //解码
        BASE64Decoder decoder = new BASE64Decoder();
        System.out.println(new String(decoder.decodeBuffer("NjY2NjY2")));
    } catch (Exception e) {
        System.out.println(e);
    }
}

这就ok了!!!

你可能感兴趣的:(在springboot中java中使用base64转码跟解码!)