Base64 encoding Allowed Characters

后端 未结 3 626
清酒与你
清酒与你 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:51

    You will not see any commas, colons, or double quotes in a Base64 encoded string. You will see equals signs since they're used to pad the ending content.

提交回复
热议问题