Base64 encode and decode example code

后端 未结 12 934
遥遥无期
遥遥无期 2020-11-22 15:00

Does anyone know how to decode and encode a string in Base64 using the Base64. I am using the following code, but it\'s not working.

String source = \"passwo         


        
12条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 15:35

    To encrypt:

    byte[] encrpt= text.getBytes("UTF-8");
    String base64 = Base64.encodeToString(encrpt, Base64.DEFAULT);
    

    To decrypt:

    byte[] decrypt= Base64.decode(base64, Base64.DEFAULT);
    String text = new String(decrypt, "UTF-8");
    

提交回复
热议问题