Base64加密URL解密URL
Posted caichaoxiang919
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Base64加密URL解密URL相关的知识,希望对你有一定的参考价值。
Base64加密URL,解密时密文需将空格替换为“+”
加密:
callBackUrl+= "&userInfo=" + Base64.encode(user.toString());
解密:
userInfo= JacksonSupport.decode1(Base64.decode(request.getParameter("userInfo").replaceAll(" ","+")),Map.class);
以上是关于Base64加密URL解密URL的主要内容,如果未能解决你的问题,请参考以下文章