byte[] b = Base64.encodeBase64URLSafe(data.getBytes(ENCODING));
和
byte[] b = Base64.encodeBase64(data.getBytes(ENCODING));
区别在于encodeBase64会对字符串3位一组自动补全,因而最后可能会出现 == 或者 =
而encodeBase64URLSafe则是按照字符串实际位数进行加密,最后若为1位,则不补全,不会出现 == 或者 =
byte[] b = Base64.encodeBase64URLSafe(data.getBytes(ENCODING));
和
byte[] b = Base64.encodeBase64(data.getBytes(ENCODING));
区别在于encodeBase64会对字符串3位一组自动补全,因而最后可能会出现 == 或者 =
而encodeBase64URLSafe则是按照字符串实际位数进行加密,最后若为1位,则不补全,不会出现 == 或者 =