url中特殊字符被转义成编码后如何处理

2021-03-04 14:26

阅读:731

标签:错误   方案   text   http   解决方案   cipher   url   stack   decode   

做加密时,传到后台出现%20  %3D等,导致解密错误,原因是特殊字符被转义编码,解决方案:

try {
     ciphertext = URLDecoder.decode(ciphertext,"UTF-8");
} catch (UnsupportedEncodingException e) {
     e.printStackTrace();
}

  

来源:这位大佬写的。https://blog.csdn.net/zhizhengguan/article/details/89066930

url中特殊字符被转义成编码后如何处理

标签:错误   方案   text   http   解决方案   cipher   url   stack   decode   

原文地址:https://www.cnblogs.com/xr210/p/13260499.html

上一篇:JQuery 的$.each取值

下一篇:网页转换为PDF


评论


亲,登录后才可以留言!