jdk1.8 自带的Base64加密与解密

2020-10-23 10:37:04 浏览数 (1)

注意:这个加密以后返回的加密字符串可能是下面这个样子的(后面带=),正常现象不是自己代码的问题0.0,不要头铁的去找哪里自己写错了

代码语言:javascript复制
加密返回如下:
ZHNhZmFzZnNhZmFzZnNhZmFzZmFzZ2FzZg==
解密返回如下:
dsafasfsafasfsafasfasgasf

1.代码

代码语言:javascript复制
package test;

import java.util.Base64;

/**
 * zt
 * 2020/9/14
 * 17:40
 */
public class MyTest {
    //加密
    public static String encode(String str){
        /*String encode = Base64.getEncoder().encodeToString(str.getBytes());
        System.out.println(str   "t编码后的字符串为:"   encode);
        return str;*/
        return new String(Base64.getEncoder().encode(str.getBytes()));
    }
    //解密
    public static String decode(String str){
       /* String decode = new String(Base64.getDecoder().decode(str));
        System.out.println(str   "t字符串解码后为:"   decode);
        return decode;*/
        return new String(Base64.getDecoder().decode(str));
    }

    public static void main(String[] args) {
        String str = "asadasdas";
        //加密
        /*String encode = Base64.getEncoder().encodeToString(str.getBytes());
        System.out.println(str   "t编码后的字符串为:"   encode);
        //解密
        String decode = new String(Base64.getDecoder().decode(encode));
        System.out.println(encode   "t字符串解码后为:"   decode);*/
        String encode = encode(str);
        System.out.println(encode);
        String decode = decode(encode);
        System.out.println(decode);
    }

}

运行结果1

运行结果2

0 人点赞