Base64 encoding Allowed Characters

后端 未结 3 625
清酒与你
清酒与你 2021-02-05 01:09

I\'m using Base64 encoding for encoding user id field in Java.

String abc = new String(Base64.encodeBase64(\"Actualuseridfield\"));

I want to k

3条回答
  •  长情又很酷
    2021-02-05 01:48

    transforming "weird" and non printable characters is kind of the whole point of base64, so no, you wont see those. more info here http://email.about.com/cs/standards/a/base64_encoding.htm

提交回复
热议问题